我想在mongodb中存储这样的东西:
{ "devices" : [ { "idDevice" : 1, "type" : 0 }, { "idDevice" : 2, "type" : 1 } ] }
我在 node.js 中使用猫鼬,在猫鼬模式中我声明“设备”变量如下:
devices: [{ type: Schema.Types.Mixed, required: false }]
当我用我的代码存储一个新设备时,我得到了这个:
"devices" : [ { "idDevice" : 1, "type" : 1 } ]
有人知道为什么“[{”之间有这些空格?