0
當我去我的/step/3
頁面我得到這個消息找不到控制器的方法在Rails應用程序
Unknown action
The action 'step3' could not be found for UsersController
我routes.rb
:
get '/step/3', :to => 'users#step3'
這種方法定義控制器用戶
class UsersController < ApplicationController
def step3
...
end
end
早期工作很好,但我不能無視它爲什麼會停止正常工作
P.S.其它控制器正常工作
請出示所有'UsersController'代碼。 –
我刪除了所有的方法,並在我的控制器中的這一刻,我只有一個方法'step3' – itdxer
它什麼時候停止正常工作? –