尝试将平板阵列插入mongodb,这是来自客户端的日志
我的文档是:
tilte: Title
slab : Array(2)
0: {lessthan: "22", value: "22"}
1: {lessthan: "22", value: "22"}
name : Name
模型
id : 123
data:[{
title:String,
slab :[{
lessthan:String,
value : String
}],
name:String
}]
这是我尝试的方法:
var slab = req.body.slab;
{ $push: { data : { tite:title }
如何将平板插入mongodb数组
根据尼尔的评论,以
选中Model.update(
{ "id": "123" },
{ "$push": { "data.0.slab.$.value": "000" } },
function(err,numAffected) {
// something with the result in here
}
);
不起作用,{ok:0,n:0,nModified:0}