简体   繁体   中英

Mongodb find a value inside the array

If I have this schema...

person = {
emails : Array
}

The values are stored in emails array as mentioned below:

emails : [{ a : "a@a.com" , b: "b@b.com" , c : "c@c.com" }]

Now i tried the below mentioned queries ,

 Person.findOne({emails : "a@a.com"}).exec(function(err,person){

 });

Mongodb native query

Person.native(function(err,collection){

collection.find( emails : { "$in" : "a@a.com"} , function(err , result){
    //code
 });

});

EDITED QUESTION

Now i tried using OR as below.

Person.findOne({ 
"or": [ 
    {"emails.a": "a@a.com" },
    {"emails.b": "a@a.com" },
    {"emails.c": "a@a.com" }
]
}, function(err,doc) { });

Actually , i have to check "emails.a" have "a@a.com" , if not only , i have to find whether "emails.b" or "emails.c" have "a@a.com".

if "emails.a" have "a@a.com" , then the doc should return the output. else search for "a@a.com" continues in "emails.b" or "emails.c".

How can i do that?

But I didn't get the required output using the above query. Please help. Thanks a lot.

Your array contains a sub-document with keys a , b and c . In order to match the value you want you need to specify this element.

Person.findOne({ "emails.a": "a@a.com" }, function(err,doc) {

If you are expecting to do this across the different fields you combine this with $or :

Person.findOne({ 
    "$or": [ 
        {"emails.a": "a@a.com" },
        {"emails.b": "a@a.com" },
        {"emails.c": "a@a.com" }
    ]
}, function(err,doc) {

Please note that this is matching the "document" and not just the member of the array.

Also see the $elemMatch operator for it's uses.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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