BSON :: InvalidObjectId非法ObjectId格式

时间:2012-04-08 23:52:30

标签: ruby-on-rails elasticsearch tire

尝试在我的控制器中插入一个简单的if条件后出现此错误:

def index
  if params[:query].present?
    @blog_posts = BlogPost.search(params[:query])
  else
    @blog_posts = BlogPost.all
  end 
end

1 个答案:

答案 0 :(得分:1)

取决于您的模型的设置方式。正如Tire README所说,Mongoid的ID有点时髦,你可能需要自己定义to_indexed_json

def to_indexed_json
  self.as_json
end