我已经查询了其他问题,包括this one,但我找不到答案可以解决我的问题。
我通过显示引用并将模型类型定义为 Schema.Types.ObjectId ,以与official documentation of mongoose中描述的相同方式定义了我的模型。他们在这里:
story_model.js
var storySchema = new Schema({
...
candidateParts: [{ type: Schema.Types.ObjectId, ref: 'StoryPart'}],
...
}, { usePushEach: true});
storyPart_model.js
var storyPartSchema = new Schema({
...
storyId: { type:Schema.Types.ObjectId, ref: 'Story' },
...
}, { usePushEach: true});
而且,我已经构建了一个查询,其中ObjectID = require('mongodb').ObjectID;
和storyModel
是通过storyController.js传递的故事
以下是我打电话给populate的方法:
StoryController.prototype.getCandidateParts = function (storyId, callback) {
var me = this;
const id = { '_id': ObjectID(storyId) };
me.storyModel.findOne(id).populate('candidateParts').exec(function(err,story) {
if (err) return callback(err, new me.ApiResponse({ success: false, extras: { message: me.ApiMessages.DB_ERROR }}));
if (story) {
return callback(err, story);
}else {
return callback(err, new me.ApiResponse({ success: false, extras : { message: me.ApiMessages.STORY_NOT_EXISTS }}));
}
});
};
以下是我查看新填充故事结果的方法:
me.getCandidateParts(story._id, (err, populatedStory) => {
if (err) {
return;
}
if (populatedStory) {
console.log(populatedStory);
但是我得到这个结果而不是填充部分的故事:
[ { _id: 5a8bfaab78798703c0760bd1,
__v: 2,
is_updated: 2018-02-20T10:38:32.620Z,
is_created: 2018-02-20T10:38:32.620Z,
candidateParts: []
... } ]
顺便说一下,我确信candidateParts在数据库中包含了类似的内容:
ObjectId("5a8bfa33cd601903b57329ab")
是的,我也确定我已经使用完全相同的标识符定义了模型引用。
提前致谢!
答案 0 :(得分:2)
我意识到,对于StoryPart和Story实例,我有相同的ID 。这就是为什么它什么都不返回。
修改强>
我通过确保和更正故事和故事部分的ID来解决问题。我不删除这个问题,因为可能有人面临同样的问题, 所以只要检查你的ObjectID是否引用了正确的实例。