我有这样的方法:
class ProfilesController < ApplicationController
before_filter :authenticate_user!
current_user
def index
@users = User.all
end
...
end
我的路线是
match 'profile', :controller => 'profiles', :action => 'index'
但是当我访问时,http://127.0.0.1:8080/profile
我得到:
NoMethodError
在Profiles#index
未定义的方法each
中nil:NilClass