このコードは動作していますが、$ pushクエリフィールドがこのようなdynaminになる必要があります generalrecommendations [req.body.term] .types.apps助けてください。.immediate.types.appsを動的テキストに変更する方法
"generalrecommendations" : {
"immediate" : {
"types" : {
"apps" : [
"1"
]
}
}
}
and here is my code:
db.collection('colleges').update(
{ '_id': new ObjectId(req.body.college) },
{
$push:{ "generalrecommendations.immediate.types.apps": temp2[key1][i] }
}, function (err, result) {
})
はIDを検索し、配列をexixtingに新しい項目を追加: はここに私のMongoDBデータベースです。ここでは即値はハードコードされていますが、このreq.body.termのように動的に変更する必要があります。