Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
821 views
in Technique[技术] by (71.8m points)

mongoose - MongoDB return all documents (even if they are double)

Let say I have an array with some document _id's:

const ids = ["5ffd5eb822084969b4dc9f74","5ffd5eb822084969b4dc9f74"]

As you can see, there are duplicated, so I want both documents back from Mongo. But with the Document.find({_id: {$in: ids}}) query and the $all option only one document is returned.

Is there a way to get the transaction twice (in this case) back from Mongo?

question from:https://stackoverflow.com/questions/65682160/mongodb-return-all-documents-even-if-they-are-double

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use a for loop iterate over the array of ids and and use Document.find(id) multiple times.

const ids = ["5ffd5eb822084969b4dc9f74","5ffd5eb822084969b4dc9f74"];
const result = [];
// Loop through each element
ids.forEach(async(id) => {
    const foundResult = await Document.find({_id: id});
    result.push(foundResult);
})

Then you can use the result array.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...