0

我需要这个文档结构:

lessons.insert({
name: 'some_name',
audio_files: [
  [
    {
      paths: 'paths/to/file1',
      transcriptions: [
      'Transcript ..........1',
      'Transcript ..........2',
      'Transcript ..........3',
      ]
    }
  ],
  [
    {
      paths: 'paths/to/file2',
      transcriptions: [
      'Transcript ..........1',
      'Transcript ..........2',
      'Transcript ..........3',
      ]
    }
  ],
]
});

我尝试使用以下SimpleSchema来描述它:

audio_files: {
  type: [[String]]
}

这是错误的配置。

我怎样才能正确地制作这个架构?

4

1 回答 1

0
audiofiles: {
    type: [Object]
},
'audio_files.$.paths': {
    type: String
},
'audio_files.$.transcriptions': {
    type: [String]
}

在这里查看更多信息。

于 2015-09-01T16:59:37.400 回答