我用我的rails應用程序聲明授權,我有以下控制器:聲明驗證阻止實例變量
class OrganizationsController < ApplicationController
filter_resource_access attribute_check: true
def index
@organizations = Organization.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @organizations }
end
end
end
然而,當我嘗試訪問視圖的行動,我得到的錯誤 undefined method 'each' for nil:NilClass
我試圖訪問@organizations
實例變量。它適用於我註釋掉filter_resource_access
行。
有什麼想法?