current_user 方法不可访问
我正在使用declarative_authorization...当我尝试访问current_user时,它给我错误未定义的局部变量或方法“current_user”。 ..任何人都可以帮我吗?
谢谢...
i am using declarative_authorization... when i try to access current_user, it gives me the error undefined local variable or method `current_user'... can anyone help me out..?
thnx...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
current_user
是必须为声明性授权提供的方法,而不是它提供的东西。来自自述:
中还有一个部分,其中还介绍了使用 Restful 身份验证来提供
current_user
功能的要求。current_user
is a method that has to be provided for declarative authorization, not something it provides.From the read me:
There is also a section in that read me also about providing the requirements using restful authentication to provide the
current_user
functionality.