在对象数组的数组内填充字段

时间:2019-03-27 10:27:58

标签: mongoose mongoose-populate

我的模型如下:

const gallerySchema = new Schema({
  pictures: [[{
    title: String,
    file: {
      type: Schema.ObjectId,
      ref: 'asset',
    }
  }]],
  createdAt: Date
});

我要填充file字段。

我尝试过

Gallery
.find({})
.populate({'path': 'pictures.file'})

这行不通。

0 个答案:

没有答案