尝试if
在控制器中插入简单条件后出现此错误:
def index
if params[:query].present?
@blog_posts = BlogPost.search(params[:query])
else
@blog_posts = BlogPost.all
end
end
尝试if
在控制器中插入简单条件后出现此错误:
def index
if params[:query].present?
@blog_posts = BlogPost.search(params[:query])
else
@blog_posts = BlogPost.all
end
end
取决于你的模型是如何设置的。正如轮胎自述文件所说,Mongoid 的 ID 有点奇怪,你可能必须to_indexed_json
自己定义:
def to_indexed_json
self.as_json
end