用mongoose在mongodb中存储数据

时间:2013-11-13 17:52:11

标签: node.js mongodb mongoose

我想用mongodb存储这样的东西:

{ "devices" : [ { "idDevice" : 1, "type" : 0 }, { "idDevice" : 2, "type" : 1 } ] }

我正在使用mongoose和node.js,在mongoose模式中我声明“devices”变量如下:

devices: [{ type: Schema.Types.Mixed, required: false }]

当我使用我的代码存储新设备时,我得到了这个:

"devices" : [   {   "idDevice" : 1,     "type" : 1 } ]

有人知道为什么这些空格在“[{”?

之间

0 个答案:

没有答案