gpt4 book ai didi

javascript - Mongoose 查找所有引用的文档

转载 作者:行者123 更新时间:2023-12-03 09:36:58 25 4
gpt4 key购买 nike

Mongoose 是否提供了一种从先前查询结果中查找所有引用文档的方法?

例如:

Product
.find(query)
.exec(function(err, results) {
...
Product
.find({
'$or': [
// get all products where _id is in results.associatedProducts[]
]
})
...
});

最佳答案

我无法找到一种方法来使用 Mongoose 本地执行此操作,请参阅下面的工作解决方案。

Product
.find(query)
.exec(function(err, products) {
...
var associatedSoftware = products.reduce(function(memo, current) {
if(current.features && current.features.associatedSoftware) {
return memo.concat(current.features.associatedSoftware.map(function(item) {
return item._id;
}));
}
return memo;
}, []);

Product.find({
'$or': [
...
{ '_id': { '$in': associatedSoftware } }
...
]
})
.exec(function(err, associated) {
...
});
});

关于javascript - Mongoose 查找所有引用的文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31305143/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com