加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails – 不能在模型中包含模块

发布时间:2020-12-16 21:54:46 所属栏目:百科 来源:网络整理
导读:我在用着 Ruby version 1.8.7Rails version 3.0.3 我的rails应用程序的每个模型都有一个叫做alive的方法: def alive where('deleter is null') end 我不想在每个模型中复制这个代码,所以我做了一个/lib/life_control.rb module LifeControl def alive where
我在用着
Ruby version              1.8.7
Rails version             3.0.3

我的rails应用程序的每个模型都有一个叫做alive的方法:

def alive
    where('deleter is null')  
  end

我不想在每个模型中复制这个代码,所以我做了一个/lib/life_control.rb

module LifeControl    
  def alive
    where('deleter is null')  
  end   

  def dead
    where('deleter is not null')  
  end    
end

在我的模型(例如client.rb)中我写道:

class Client < ActiveRecord::Base
  include LifeControl   
end

在我的config / enviroment.rb中我写了这一行:

require 'lib/life_control'

但是现在我得到一个没有方法的错误:

NoMethodError in
ClientsController#index

undefined method `alive' for
#<Class:0x10339e938>

app/controllers/clients_controller.rb:10:in
`index'

我究竟做错了什么?

解决方法

include将将这些方法视为实例方法,而不是类方法.你想做的是这样的:
module LifeControl    
  module ClassMethods
    def alive
      where('deleter is null')  
    end   

    def dead
      where('deleter is not null')  
    end    
  end

  def self.included(receiver)
    receiver.extend ClassMethods
  end
end

这样,活着和死亡将在课堂本身上可用,而不是实例.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读