轨道 3 + MongoDB:如何进行嵌套查询?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为以下内容也可以
I think that the following would work too
您的代码应该可以完美运行。
Your code should work perfectly.
对我来说,它只适用于大括号。像这样:
For me, it worked only with curly brackets. Like that: