所有文档中的mongoDB +节点更新字段

时间:2014-03-13 21:22:35

标签: node.js mongodb

我需要从出现在所有文档的其他文档中的子文档中更新一个字段...

像这样的东西,我有一些像这样的文件:

{
  "_id": { "$oid" : "531cc2410b4ebf000036b2d7" },
  "name": "ALMACEN 2",
  "items": [
    {
      "_id": { "$oid" : "531ed4cae604d3d30df8e2ca" },
      "brand": "BJFE",
      "type": 0,
      "color": "GDRNCCD",
      "hand": 1,
      "price": 500,
      "model": 0,
      "qty": 24
    },
    {
      "_id": { "$oid" : "531ed4cae604d2330df8e2ca" },
      "brand": "BJFE",
      "type": 0,
      "color": "GDRNCCD",
      "hand": 1,
      "price": 500,
      "model": 0,
      "qty": 12443
    },
    {
      "_id": { "$oid" : "531ed22ae604d3d30df8e2ca" },
      "brand": "BJFE",
      "type": 0,
      "color": "GDRNCCD",
      "hand": 1,
      "model": 0,
      "price": 500,
      "qty": 5
    }
  ]
}

我想将包含_id 531ed22ae604d3d30df8e2ca

的项目的所有文档的数量设置为0

我有它的那一刻

warehouses.update({$.items._id: new ObjectID(item.brand._id)}, { $set: { qty: 0}}, {safe: false, multi: true}, function (e) {
        if (e) {
            error(e);
            return;
        }

        success();
    });

但我觉得查询不行......

2 个答案:

答案 0 :(得分:2)

您需要使用"$"位置运算符来实现此目的:

db.warehouses.update({"items._id": "531ed22ae604d3d30df8e2ca"}, { $set: { "items.$.qty":0} } )

答案 1 :(得分:0)

在mongo控制台中,它看起来像这样:

do {
  db.warenhouse.update(
    {
      "_id" : "531cc2410b4ebf000036b2d7",
      items: {
        $elemMatch: {
          qty: { $ne: 0 }
        }
      }
    },
    {
      $set: {
        "items.$.qty": 0
      }
    }
  )
} while (db.getPrevError().n != 0);

资源link