schemm如下: comments:[{ commentName:String, commentTime:{ type:Date, default:Date.now() }, commentContent:String, commentId:{ type:Number, default:0 } }] 然后最后的结果每一条都存了两遍 服务器端代码如下: blogResults[0].comments.push({ commentName:userResults[0].username, commentContent:req.body.commentContent, commentId:blogResults[0].comments.length+1 }); blogResults[0].save();
请教一下大家,数组的每一次存储是save还是update?