Mongomapper查询哈希的键

时间:2011-08-16 22:44:02

标签: ruby-on-rails-3 hash key mongomapper

我有一天的模型,每天都包含一个标签哈希。

class Day
  include MongoMapper::Document

  key :tags, Hash
  ...
end

标签哈希可能看起来像{“a”=> 4,“b”=> 1,“c”=> 1}

我想写一个查询,可以找到标记键等于'a'的所有日子。

Day.where('tags.keys' => "a")

这不起作用,因为键实际上不是哈希中的键,我猜我不能只使用keys方法。

我真的想知道是否有办法查询哈希的键,否则我将不得不创建一个数组来存储键并查询。

tags = {"a"=>4, "b"=>1, "c"=>1, "names" => ["a", "b", "c"]}

Day.where('tags.names' => "a") #This would work find, but is not what I want

1 个答案:

答案 0 :(得分:5)

我找到了解决方案。

Day.where('tags.a'=> {'$ exists'=> true})

这将使用'a'键返回所有日期。

事实上,我可以像这样写一个方法

def self.find_all_by_tag(tag)
  Day.where("tags.#{tag}" => {'$exists' => true}).all
end

然后通过这样的特定标签很容易获得所有日期:

Day.find_all_by_tag("a")