在mongo ruby​​中执行$ in时获取未定义的方法bson_type

时间:2015-09-19 05:57:43

标签: ruby mongodb

我正在使用最新版本的mongo驱动程序,我正在尝试查询。

这曾经有用,但由于某些原因现在没有,我在驱动程序中查找了$ in的示例,但找不到任何内容。

Mongo::Logger.logger.level = ::Logger::FATAL
client = Mongo::Client.new([configatron.dbserver],
                           :database => configatron.dbname
                          )
@collection = client[collection_name]

@collection.find(
  :$and => [
    {:ShareIndex => {:$in => share_indexes}},
    {:Latest => true}]
  )

我得到的确切错误:

undefined method `bson_type' for #<Mongo::Collection::View:0x007ff9b2827130>

1 个答案:

答案 0 :(得分:1)

mongodb中没有$a运算符

@collection.find({ :ShareIndex => { :$in => share_indexes }, :Latest => true })