“Mongoose Trouver dans le tableau” Réponses codées

Findbyid Mongoose

// Find the adventure with the given `id`, or `null` if not found
await Adventure.findById(id).exec();

// using callback
Adventure.findById(id, function (err, adventure) {});

// select only the adventures name and length
await Adventure.findById(id, 'name length').exec();
Cheerful Cockroach

Query de mangouste utilisant un arry

var query = PUser.find({'userID': {$in:array}});
Outstanding Otter

Mongoose Trouver dans le tableau

Or, if teamIds is a string of comma-separated id values, you need to convert it into an array of values using split:
Team.find({
    '_id': { $in: teamIds.split(',') }
}, function(err, teamData) {
    console.log("teams name  " + teamData);
});
stacklord

Monngoose trouver à partir d'un tableau utilisant dans

//If teamIds is already an array, then you shouldn't wrap it in another array:

Team.find({
    '_id': { $in: teamIds }
}, function(err, teamData) {
    console.log("teams name  " + teamData);
});

//If teamIds is a string of comma-separated id values, you need to convert it into an array of values using split:

Team.find({
    '_id': { $in: teamIds.split(',') }
}, function(err, teamData) {
    console.log("teams name  " + teamData);
});

Jaimin Patel

Monngoose trouver à partir d'un tableau utilisant dans

//e.g. : There's an array of Team Ids which needs to find documents from db
Team.find({
    '_id': { $in: teamIds.split(',') }
}, function(err, teamData) {
    console.log("teams name  " + teamData);
});
Jaimin Patel

Réponses similaires à “Mongoose Trouver dans le tableau”

Questions similaires à “Mongoose Trouver dans le tableau”

Plus de réponses similaires à “Mongoose Trouver dans le tableau” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code