我的模型如下:
const gallerySchema = new Schema({
pictures: [[{
title: String,
file: {
type: Schema.ObjectId,
ref: 'asset',
}
}]],
createdAt: Date
});
我要填充file
字段。
我尝试过
Gallery
.find({})
.populate({'path': 'pictures.file'})
这行不通。