填充对象 ID 数组

lal*_*hav 5 mongoose mongodb node.js

我的架构:-

var playlistSchema = new Schema({
name        : {type:String,require:true},
videos      : {type:[mongoose.Schema.Types.ObjectId],ref: 'Video'},
},{collection:'playlist'})

var Playlist = mongoose.model('Playlist',playlistSchema);
Run Code Online (Sandbox Code Playgroud)

我在数据库中有一些数据作为示例:-

{
"_id" : ObjectId("58d373ce66fe2d0898e724fc"),
"name" : "playlist1",
"videos" : [ 
    ObjectId("58d2189762a1b8117401e3e2"), 
    ObjectId("58d217e491089a1164a2441f"), 
    ObjectId("58d2191062a1b8117401e3e4"), 
    ObjectId("58d217e491089a1164a24421")
],
"__v" : 0
Run Code Online (Sandbox Code Playgroud)

}

视频的架构是:-

var videoSchema = new Schema({
name        : {type:String,required:true},
createdAt   : {type:String,default:new Date()},
isDisabled  : {type:Boolean,default:false},
album       : {type: mongoose.Schema.Types.ObjectId, ref: 'Album'}
},{collection:'video'})

var Video = mongoose.model('Video',videoSchema);
Run Code Online (Sandbox Code Playgroud)

现在为了获得播放列表中所有视频的名称,我正在尝试代码:-

 var playlistModel = mongoose.model('Playlist');
let searchParam = {};
searchParam._id = req.params.pid;
playlistModel.findOne(searchParam)
.populate('[videos]')
.exec(function(err,found){
    if(err)
        throw err;
    else{
        console.log(found.videos[0].name);
    }
})
Run Code Online (Sandbox Code Playgroud)

但在这里我得到了未定义的结果。我不明白我错在哪里,请任何人帮我解决这个问题。

lal*_*hav 12

得到答案:-只需更改架构

var playlistSchema = new Schema({
name        : {type:String,require:true},
videos      : [{type:mongoose.Schema.Types.ObjectId,ref: 'Video'}],
},{collection:'playlist'})

var Playlist = mongoose.model('Playlist',playlistSchema);
Run Code Online (Sandbox Code Playgroud)

只需使用

.populate('videos')
Run Code Online (Sandbox Code Playgroud)

代替

.populate('[videos]')
Run Code Online (Sandbox Code Playgroud)