具有数组字段的Mongoid搜索对象

时间:2018-12-29 13:32:01

标签: ruby-on-rails mongodb mongoid

我对搜索查询蒙古语有疑问。

我有Blog模型

class Blog
  include Mongoid::Document

  field :title, type: String
  field :body, type: String
  field :tags, type: Array
  field :_id, type: String, default: -> {title.to_s.parameterize}
end

,如果标签是"#thisishelloworld",我想搜索我的Blog。我尝试使用:

def tags 
  @blog = Blog.where("tags" => ["#thisishelloworld"])
end

但是它不起作用。请帮我。非常感谢。

0 个答案:

没有答案