before_filter 检查多个角色
在 application_controller 中,我有以下方法:
def authorized_for_roles(*roles)
roles.each{|role_name| return true if current_user.has_role?(role_name)}
false
end
在我的一个控制器中,我
private
def authorize_administration
authorized_for_roles :administrator
end
在 before_filter 中调用authorize_administration。当前收到“未定义的方法角色”错误。有人可以告诉我哪里出了问题吗?current_user 是有效/已定义的,并且可以检查角色。
谢谢
In application_controller I have the following method:
def authorized_for_roles(*roles)
roles.each{|role_name| return true if current_user.has_role?(role_name)}
false
end
In one of my controllers, I have
private
def authorize_administration
authorized_for_roles :administrator
end
I am calling authorize_administration in my before_filter. Currently getting 'undefined method roles" error. Can someone tell me where I've gone wrong? the current_user is valid/defined, and the role can be checked.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
错误真的是在authorized_for_roles def中,还是在用户模型中?您是否为用户定义了 has_many :roles ?
Is the error really in the authorized_for_roles def, or perhaps in the User model? Did you define has_many :roles for User?