标签: ruby-on-rails cancan
我希望我的编辑和更新操作通过将@user设置为current_user来加载@user。我已经尝试了load_and_authorize_resource through: :current_user, only: [:edit, :update]但是得到错误“#user的未定义方法用户”。这是可能的还是我必须手动加载和授权@user?
load_and_authorize_resource through: :current_user, only: [:edit, :update]