我正在使用这个查询:
Model.update(
{_id: req.params.questions_id, "doc.questionSets.$._id": req.params.set_id},
{$pushAll: {"questions": req.body}},
{upsert:true},
function(err, questions){
console.log("err", err);
console.log("err", questions);
}
)
路由调用:
localhost:3131/api/v0.1/charting/questions/56cff03e9ff240192da2fa34/set/56cff04e9ff240192da2fa3a/add-new-question
在哪里 :charting/questions/:questions_id/set/:set_id/add-new-question
文件数据:
/* 1 */
{
"_id" : ObjectId("56cff03e9ff240192da2fa34"),
"questionSets" : [
{
"name" : "Physical exam questions",
"_id" : ObjectId("56cff03e9ff240192da2fa35"),
"questions" : [
{
"question" : "What is love?",
"answer" : "",
"_id" : ObjectId("56cff03e9ff240192da2fa39")
}
]
},
{
"name" : "Brain questions",
"_id" : ObjectId("56cff04e9ff240192da2fa3a"),
"questions" : [
{
"question" : "What is love?",
"answer" : "",
"_id" : ObjectId("56cff04e9ff240192da2fa3e")
}
]
}
],
"updatedAt" : ISODate("2016-02-26T06:26:39.330Z")
}
我想将此 JSON 对象推送到questionSets[0].questions
:
[
{
"question" : "Added 1?"
}
]
但是查询返回{ ok: 0, n: 0, nModified: 0 }并且文档没有被更新。我在这里做错了什么?谢谢。