我正在使用Mongoose检索一些数据。我有一个填充集合的函数。我使用select从数据库中获取特定部分。
我选择了“文本”字段,但是我只希望检索文本的子字符串。我该怎么做。
这是功能:
.exec(function(err, sub_docs){
subcollection.find({_id: id})
.populate({path: 'messages', select: 'title date url type text'})
.lean().exec(function(err, messages) {
res.render(main_item, {sub:sub_docs, messages: messages});
});
});