如何执行深度填充猫鼬?
How to perform deep populate mongoose?
这是我的 question.js 和 user.js 带有猫鼬的模式模型,如下所示,任何人都可以帮助如何使用 Node js 填充 likes:[] 数组对象中的所有用户名列表,因为我是现在面临这个问题将近 2 周,我无法从喜欢的用户那里填充用户名。拜托,感谢您的建议。
question schema model
user schema model
我试过你的代码并使用你的模型让它工作。如果你只使用 user
你可以直接调用 .populate("user")
但如果它是嵌套的你需要做 .populate("likes.user")
Post.findOne( { _id: id } ).populate( "user" ).populate( "likes.user" );
是的,感谢 Ratnadeep Bhattacharyya,现在我可以在点赞数组对象中填充用户名,还可以 return 唯一一个特定的点赞数组。下面是工作代码:
快乐编码,Jonh
//@route api/post/get/likes
router.get('/get/likes/:postId', auth, async (req, res) => {
try {
//check if post exist
const likes = await Post.findOne({ _id: req.params.postId })
.populate('user', ['name'])
.populate('likes.user', ['name']);
return res.status(200).json(likes.likes);
} catch (error) {
console.log(error.message);
res.status(500).json({ msg: 'Server error' });
}
});
要填充用户详细信息,请使用
Post.findOne( { _id: id } )
.populate( "user" )
.populate( "likes.user" );
要获得赞post,请使用
Post.find({ "likes": { "$gt": 0 } }, function(err, data) {
})
或者使用where,这里如果likes字段缺失或者为空可能会报错,所以请检查是否存在
Post.find( {$where:'this.likes.length>0'} )
所以请使用 where 和 exists
Post.find( {likes: {$exists:true}, $where:'this.likes.length>0'} )
这是我的 question.js 和 user.js 带有猫鼬的模式模型,如下所示,任何人都可以帮助如何使用 Node js 填充 likes:[] 数组对象中的所有用户名列表,因为我是现在面临这个问题将近 2 周,我无法从喜欢的用户那里填充用户名。拜托,感谢您的建议。
question schema model
user schema model
我试过你的代码并使用你的模型让它工作。如果你只使用 user
你可以直接调用 .populate("user")
但如果它是嵌套的你需要做 .populate("likes.user")
Post.findOne( { _id: id } ).populate( "user" ).populate( "likes.user" );
是的,感谢 Ratnadeep Bhattacharyya,现在我可以在点赞数组对象中填充用户名,还可以 return 唯一一个特定的点赞数组。下面是工作代码: 快乐编码,Jonh
//@route api/post/get/likes
router.get('/get/likes/:postId', auth, async (req, res) => {
try {
//check if post exist
const likes = await Post.findOne({ _id: req.params.postId })
.populate('user', ['name'])
.populate('likes.user', ['name']);
return res.status(200).json(likes.likes);
} catch (error) {
console.log(error.message);
res.status(500).json({ msg: 'Server error' });
}
});
要填充用户详细信息,请使用
Post.findOne( { _id: id } )
.populate( "user" )
.populate( "likes.user" );
要获得赞post,请使用
Post.find({ "likes": { "$gt": 0 } }, function(err, data) {
})
或者使用where,这里如果likes字段缺失或者为空可能会报错,所以请检查是否存在
Post.find( {$where:'this.likes.length>0'} )
所以请使用 where 和 exists
Post.find( {likes: {$exists:true}, $where:'this.likes.length>0'} )