我对cancan感到非常困惑,我试图从我的mysql数据库中获取cancan的角色。我使用的控制器没有执行show / edit / destroy之类的操作(我认为它被称为Non RESTful Controller)。
我的用户表中有一个Role_id列,而角色表中有id和角色名。
我得到的只是这个错误:
#的未定义方法`find_by_name'
Ability.rb:
class Ability
include CanCan::Ability
def initialize(user)
can :manage, :all if user.role? :admin
end
end
这是我的User.rb:
User.rb:
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable,
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable, :confirmable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me, :username, :firstname, :lastname, :birthday
# attr_accessible :title, :body
validates_uniqueness_of :username
belongs_to :role
def role?(role)
return !!self.role.find_by_name(role.to_s.camelize)
end
end
Role.rb:
class Role < ActiveRecord::Base
has_many :users
attr_accessible :users, :name
end
这是我正在使用的控制器:
class WsdlController < ApplicationController
authorize_resource :class => false
$liga_id = 456
$liga_short = "bl1"
$saison = 2012
def connect
@client = Savon::Client.new("http://www.openligadb.de/Webservices/Sportsdata.asmx?WSDL")
@output = ""
end
def get_all_for_new_saison
if @client.nil?
connect
end
#get_teams_by_league_saison
#get_matchdata_by_league_saison
end
end
最佳答案
find_by_name
是ActiveRecord
类方法。 (请参见Active Record Query Interface指南)您正在像实例方法一样调用它。
尝试更改此:
def role?(role)
return !!self.role.find_by_name(role.to_s.camelize)
end
像这样:
def role?(role_name)
return self.role.present? && self.role.name == role_name.to_s
end
当然,在红宝石中,
return
和self
都是可选的。关于mysql - Ruby On Rails:具有#<Role:0x304ad18>的Devise错误'undefined method`find_by_name'的CanCan,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13585698/