ruby-on-rails-3 – CanCan错误’未定义的方法角色?’与设计

嘿,我希望你能帮助我:

我正在阅读本教程

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

我不太确定在哪里放置角色? – 教程中的方法,因为它没有说放置它的位置.

现在,当我想要sign_up或Sign_in时,它会给我这个错误

非常感谢

解决方法

您需要在用户模型中添加它(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

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...