标签: python mongodb python-3.x pymongo
在Mongoose中,我能够提取引用另一个Collection的数据。
例如,我可以做
Comment.find().populate('user').then(comment => { // })
这样comment包含所有正常字段(text,createdAt等),但它也填充了user中的所有字段,以便它现在有comment.user.username,comment.user.full_name等
comment
text
createdAt
user
comment.user.username
comment.user.full_name
如何使用PyMongo获取相同内容?
PyMongo