且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

猫鼬填充返回空数组

更新时间:2023-02-21 12:17:24

userSchema中的ref似乎不正确,它应该引用book模式而不是user模式本身.

It seems the incorrect ref in the userSchema, it should reference to book schema rather than user schema itself.

var book = mongoose.model('Book', bookSchema);

...
books: [{type: Schema.Types.ObjectId, ref: 'book'}]