mongoose字符串数组

时间:2013-01-04 20:45:07

标签: mongoose

我希望Mongoose Schema属性包含一个字符串数组数组,如此

[['one','two','three'],['four','five']]

我应该如何在我的架构中对此进行建模?以下似乎不起作用,但可能是另一个错误......

names : [[{type: String, trim: true}]]

我是否必须根据Nested arrays in Mongoose

制作单独的架构

由于

1 个答案:

答案 0 :(得分:2)

啊,事实证明嵌套数组必须放在单独的模式中

var InnerArray = new mongoose.Schema({
  set : [{type: String, trim: true}]
})

var Stuff = new mongoose.Schema({
foo : [InnerArray]
})