简体   繁体   English

MongoDB查询以从位于数组中的文档中检索特定值

[英]MongoDB query to retrieve a specific value from the document located in a array

I am trying to make a request in a document with mongodb. 我正在尝试使用mongodb在文档中提出请求。

In this document 在本文件中

{
    "_id" : ObjectId("5bd19a92da24674fdabd26b6"),
    "search" : "try",
    "name" : "try",
    "email" : "yes@gmail.com",
    "password" : "$2a$10$YIRuApqDy/L8HU7R1k2SB.aC2hqH8xFDbl3/muF7PsoN6/SGzsH4q",
    "color" : 0,
    "profil" : "",
    "banner" : "",
    "desc" : "",
    "date" : 45587899,
    "friend" : [
            {
                    "id" : ObjectId("5bcee588ae409f434d35c76c")
            }
    ],
    "groupes" : [ ]
}

I'm looking to get just the id in friend, not all of the document just 1 id in friend with where i try this : 我正在寻找仅在朋友中的ID,而不是所有文档在我尝试的朋友中只有1个ID:

db.users.find({$and:[{"friend.id":"ObjectId(5bcee588ae409f434d35c76c)"},{"search":"try"}]})

It's not working i got no result. 它不起作用,我没有结果。

Thank you for helping me. 感谢你们对我的帮助。

I am not 100% sure I do understand your question properly. 我不是100%肯定会正确理解您的问题。 You should be able to query the described document via the following query: 您应该能够通过以下查询来查询所描述的文档:

find(
  /* query by 'search' and the specific friend-id */
  {'friend.id': ObjectId("5bcee588ae409f434d35c76c"), search: 'try'}, 

  /* return only that 'friend' element which matches the queried 'friend-id' */
  {_id:0, friend:{$elemMatch:{id:ObjectId("5bcee588ae409f434d35c76c")}}}
)

You get the following result: 您得到以下结果:

{
    "friend" : [ 
        {
            "id" : ObjectId("5bcee588ae409f434d35c76c")
        }
    ]
}
db.users.find({
    friend: {
        $elemMatch: {
            id: ObjectId("5bcee588ae409f434d35c76c")
        }
    },
    search: 'try'
})

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM