对于我的应用程序,我成功地管理了其他文档的引用,并将它们作为对象ID存储在我的数据库(mongodb)中。但是,当尝试使用。人口时,人口不会发生。这是我的人口代码:
User
.find()
.populate([
{path: 'followers'},
{path: 'following'}
])
答案 0 :(得分:0)
https://mongoosejs.com/docs/populate.html
”
Story.
find().
populate({ path: 'fans', select: 'name' }).
populate({ path: 'fans', select: 'email' });
// The above is equivalent to:
Story.find().populate({ path: 'fans', select: 'email' });
”
我从未使用过MongoDB,但也许此链接中的此片段可以有所帮助。