1

我对cancan很困惑,我试图从我的mysql数据库中获取cancan的角色。我正在使用一个没有显示/编辑/销毁之类的操作的控制器(我认为它被称为非 RESTful 控制器?)。我的用户表中有一个 Role_id 列,我的角色表中有一个 id 和 rolename。

我得到的只是这个错误:

未定义的方法 `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

角色.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
4

1 回答 1

0

find_by_name是一个ActiveRecord 类方法。(请参阅Active Record 查询接口指南)您正在像实例方法一样调用它。

尝试改变这个:

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

当然,在 ruby​​ 中,returnself都是可选的。

于 2012-12-12T06:45:13.927 回答