我有以下内容:
class Email
include ::Mongoid::Timestamps
include ::Mongoid::Document
field :email_address, :type => String
field :user_id, :type => Integer
field :campaign, :type => String
field :stream, :type => String
field :component, :type => String
embeds_many :actions
end
并且rails抱怨它无法找到字段方法定义。 有人知道为什么吗?
答案 0 :(得分:5)
您必须在Mongoid::Timestamps
之后加入Mongoid::Document
。