gpt4 book ai didi

javascript - 如何获取填充对象中由特定许可证 ID 创建的记录?

转载 作者:太空宇宙 更新时间:2023-11-04 00:47:34 24 4
gpt4 key购买 nike

我有两个模型,分别名为UserQuestion

User 模型具有 license 属性,Question 模型具有 created_by 属性。

Questioncreated_by 属性是对 User 模型的引用。

如何通过许可证 ID 获取特定用户created_by的问题?

我试试这个:

QuestionResource
.find({'created_by.license':req.query.license})
.exec(function (err, result) {
if (err) res.json(err)
else res.json(result)
})

但似乎不起作用。

最佳答案

您可以使用.populate()match选项方法如下:

QuestionResource
.find()
.populate({
path: 'created_by',
match: { 'license': req.query.license }
})
.exec(function (err, result) {
if (err) res.json(err)
var docs = result.filter(function(doc){
return doc.created_by.length;
});
res.json(docs)
})

关于javascript - 如何获取填充对象中由特定许可证 ID 创建的记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33940357/

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