私はこのような方法を持っています:
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