undefined method `selector' for #<ActiveRecord::Relation:0xbb8710c>
尝试执行以下代码时出现此错误:
c = Content.first
c.is_processed = true
c.save # or c.update_attributes(:is_processed => true)
我的内容模型如下所示:
class Content
include Mongoid::Document
field :username
field :name
filed :is_processed, :type => Boolean
belongs_to :language
has_many :translations
end
我正在使用 Mongoid 2.4、bson_ext 1.5、Ruby 1.9.2、Rails 3.2.5