我想用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 } ]
有人知道为什么这些空格在“[{”?
之间