在 Mongo 中按值在字典中查找
我的 Mongo 数据库中有这样的结构:
{'_id':'...',
'friends':
{'id1': {'name1':'value1', 'name2':'value2'},
'id2': {'name1':'', 'name2':''},
...}
}
How can I find element(friend) in thisdictionary(friends) by name1(value1)?
I have such structure in my Mongo db:
{'_id':'...',
'friends':
{'id1': {'name1':'value1', 'name2':'value2'},
'id2': {'name1':'', 'name2':''},
...}
}
How can I find element(friend) in this dictionary(friends) by name1(value1)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你是这个意思吗?
如果
value1
可以在任何字段中,您可以尝试:Is this what you mean?
If
value1
can be in any field, you can try:如果我正确理解你的问题你可以通过以下方式做到这一点:
这是一个很好的资源,可以帮助您开始学习 mongo 和其中的各种命令。
交互式 Mongo 教程
If I'm understanding your question correctly You can do this by:
Here is a great resource to start learning mongo and various commands from it.
Interactive Mongo Tutorial