我想在 mapReduce 之后填充字段。
mongoose.connection.db.collection('createdCollectionNameForResults', function(err, collection) {
collection.find({}).populate('ref_field').toArray(function(err, items) {
res.send(200, items)
});
});
但在这里,它给出了错误:
TypeError: Object # has no method 'populate'
因为 collection.find({}) 返回 mongodb 游标。如何填充 ref_field?