私はnodejsとmongodbを使用しています。
次の mongodb クエリから辞書 res を取得します。
Profile.find(search,['_id', 'username'],function(err, res)
印刷解像度は次のようになります。
[
{
"username": "dan",
"_id": "508179a3753246cd0100000e"
},
{
"username": "mike",
"_id": "508317353d1b33aa0e000010"
}
]
}
res[x] のそれぞれに別のキーと値のペアをプッシュしたいと思います。
[
{
"username": "dan",
"_id": "508179a3753246cd0100000e",
"more info": {
"weight": "80",
"height": "175"
}
},
{
"username": "mike",
"_id": "508317353d1b33aa0e000010"
},
"more info": {
"weight": "80",
"height": "175"
}
]
}
私はもう試した :
var x=0
dic = []
while (x<res.length){
dic[x] = {}
dic[x]=res[x]
dic[x]["more info"] = {"wight" : weight, "height" : hight}
x=x+1
}
しかし、それは無視され、私は得る
[
{
"username": "dan",
"_id": "508179a3753246cd0100000e"
},
{
"username": "mike",
"_id": "508317353d1b33aa0e000010"
}
]
}
あなたの助けに感謝。