如何在MongoDB中基于另一个集合嵌入字段值更新嵌入式集合字段数组?

时间:2015-05-19 14:02:09

标签: arrays mongodb embedded-documents

我在这个论坛中搜索了我的下面的问题,但是我无法找到解决方案。

库存盘点:

{
"_id" : ObjectId("555b1978af015394d1016374"),
"Billno" : "ABC1",
"Device_id" : "strsdedgfrtg12",
"item" : [ 
    {
        "item_id" : 232,
        "size" : "S",
        "qty" : 25
    }, 
    {
        "item_id" : 272,
        "size" : "M",
        "qty" : 5
    }
],
"category" : "clothing"

}

inventory_new集合:

{
"_id" : ObjectId("555b1978af015394d1016374"),
"Billno" : "ABC1",
"Device_id" : "strsdedgfrtg12",
"item" : [ 
    {
        "item_id" : 232,
        "size" : "S",
        "qty" : 25
    }, 
    {
        "item_id" : 272,
        "size" : "M",
        "qty" : 5000
    }
],
"category" : "clothing"

}

现在我要用inventory_new集合嵌入项“qty”字段值来更新库存集合嵌入数组的项目“qty”..我试过下面的代码..但是我没有成功。请指教。

db.inventory.find().forEach(function (doc1) {
var doc2 = db.inventory_copy.find({ Billno: doc1.Billno},{ Device_id: doc1.Device_id},{ item.item_id: doc1.item.item_id}, {item.qty: 1 });
if (doc2 != null) {
    doc1.item.qty = doc2.item.qty;
    db.inventory.save(doc1);
}

});

由于

1 个答案:

答案 0 :(得分:0)

请尝试以下更新:

db.inventory.find().forEach(function (doc1) {
    var doc2 = db.inventory_copy.findOne(
        { 
            "Billno": doc1.Billno, 
            "Device_id": doc1.Device_id,
            "item.item_id": doc1.item.item_id
        }
    );
    if (doc2 != null) { 
        doc1.item = doc2.item;    
        db.inventory.save(doc1);
    }
});