CanCan 错误“未定义的方法角色?”与设计

发布于 2024-10-11 21:35:13 字数 381 浏览 3 评论 0原文

嘿,我希望你能帮助我:

我正在阅读本教程

http://www.tonyamoyal.com/2010/07/28/rails-authentication-with-devise-and-cancan-customizing-devise-controllers/ 我一步一步做了。

我不太确定将角色放在哪里?教程中的方法,因为它没有说明将其放置在哪里。

现在,当我想要注册或登录时,它给了我这个错误

非常感谢

Hey I hope you can help me:

I was going through this tutorial

http://www.tonyamoyal.com/2010/07/28/rails-authentication-with-devise-and-cancan-customizing-devise-controllers/ and I did every step by step.

I wasnt quite sure where to put the role?-method from the tutorial, because it doesnt say where to place it.

Now it gives me this error when I want to sign_up or Sign_in

Many thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜清冷一曲。 2024-10-18 21:35:13

您需要将其添加到用户模型中(app/models/user.rb

class User < ActiveRecord::Base
  has_and_belongs_to_many :roles
  devise :database_authenticatable, :confirmable, :recoverable, :rememberable, :trackable, :validatable

  def role?(role)
      return !!self.roles.find_by_name(role.to_s.camelize)
  end
end

You need to add it in the user model (app/models/user.rb)

class User < ActiveRecord::Base
  has_and_belongs_to_many :roles
  devise :database_authenticatable, :confirmable, :recoverable, :rememberable, :trackable, :validatable

  def role?(role)
      return !!self.roles.find_by_name(role.to_s.camelize)
  end
end
旧瑾黎汐 2024-10-18 21:35:13

您应该参考此:

https://github.com/ryanb/cancan/wiki /基于角色的授权

我认为这真的很有帮助..

You should refer to this:

https://github.com/ryanb/cancan/wiki/Role-Based-Authorization

I think it'll be really helpful..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文