1

为了保持 DRY,我有一个 ModelBase 类,其中包含 Mongoid 文档,如下所示:

class ModelBase
  include Mongoid::Document

  alias_attribute :guid, :id

  def as_json(options = {})
    azove_hash = options.merge(:methods => :guid)
    super azove_hash
  end
end

然后我所有的模型都从 ModelBase 继承,它们似乎工作正常。但是,有一种型号我使用 CarrierWave。当它从 ModelBase 继承时,对 mount_uploader 的调用失败。当我在没有子类的情况下包含模型时,它工作正常。难道不能在从另一个类继承的类中使用carrierwave吗?

这是失败的类的版本。将不胜感激任何建议/想法

require 'carrierwave/orm/mongoid'

class SomeOtherModel < ModelBase
  field :abstract
  validates :abstract, :presence => true

  field :category
  validates :category, :presence => true, :inclusion => {:in => %w{audio graphics text video}}

  field :content_uri
  validates :content_uri, :presence => true

  has_and_belongs_to_many :topics
  has_and_belongs_to_many :events
  has_and_belongs_to_many :authors, :class_name => "User"

  mount_uploader :content, ContentUploader

  attr_accessible :abstract, :category, :content, :content_uri, :authors, :topics, :events   
end
4

1 回答 1

1

我觉得你把事情弄得太复杂了。我认为不需要使用 mongoid 文档从模型库继承。Mongoid 本身不使用继承,只是根据需要包含模块。

因此,如果您有一组重复使用的字段,例如联系信息,只需执行以下操作:

class Customer
  include Mongoid::Document
  include DataModules::ContactDocument
  mounts_uploader :logo, LogoUploader
end

class User
  inclue Mongoid::Document
  include DataModules::ContactDocument
end

然后在 /lib/data_modules/contact_document.rb 中包含您要重用的代码

module DataModules::ContactDocument

  def self.included(receiver) 
    receiver.class_eval do
      field :email, :type=>String
      ...
      validates_existence_of :email
    end
  end
end
于 2011-06-02T13:53:05.413 回答