轨道 3 + MongoDB:如何进行嵌套查询?

发布于 2024-11-07 04:02:19 字数 210 浏览 0 评论 0原文

我正在使用 Ruby Mongo 驱动程序。

  @surname = coll2.find("name" => {"surname" => "testing"})

这不应该起作用吗?我没有得到任何结果。

我有 {"name" : { "surname" : "testing" }}

I am using Ruby Mongo Driver.

  @surname = coll2.find("name" => {"surname" => "testing"})

Shouldn't this be working? I get no results.

I have {"name" : { "surname" : "testing" }}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

只为守护你 2024-11-14 04:02:20

我认为以下内容也可以

coll2.find("name.surname"=>"testing").first

I think that the following would work too

coll2.find("name.surname"=>"testing").first
韵柒 2024-11-14 04:02:20

您的代码应该可以完美运行。

> coll2.insert({"name" => {"surname" => "testing"})
# => BSON::ObjectId('4dcb2e53abad691f62000002')
> coll2.insert({"name" => {"surname" => "another"})
# => BSON::ObjectId('4dcb2e53abad691f62000003')
> coll2.find().count
# => 2
> coll2.find("name" => {"surname" => "testing"}).count
# => 1
> coll2.find("name" => {"surname" => "testing"}).first
# => {"_id"=>BSON::ObjectId('4dcb2e53abad691f62000002'), "name"=>{"surname"=>"testing"}} 

Your code should work perfectly.

> coll2.insert({"name" => {"surname" => "testing"})
# => BSON::ObjectId('4dcb2e53abad691f62000002')
> coll2.insert({"name" => {"surname" => "another"})
# => BSON::ObjectId('4dcb2e53abad691f62000003')
> coll2.find().count
# => 2
> coll2.find("name" => {"surname" => "testing"}).count
# => 1
> coll2.find("name" => {"surname" => "testing"}).first
# => {"_id"=>BSON::ObjectId('4dcb2e53abad691f62000002'), "name"=>{"surname"=>"testing"}} 
悟红尘 2024-11-14 04:02:20

对我来说,它只适用于大括号。像这样:

col2.find({"name.surname": "testing"})

For me, it worked only with curly brackets. Like that:

col2.find({"name.surname": "testing"})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文