如何使用更新命令更新mongodb中的文档密钥?

时间:2019-05-28 09:27:04

标签: node.js mongodb mongodb-query nodejs-stream

我试图将数据插入到mongodb中。它已成功插入,但是我遇到了将文档插入mongodb错误的问题。如何使用mongodb中的更新查询来更新文档中的键和值。

Json数据格式

{
             "brand": "LG",
             "colour": "Black",
             "item height": "14 Millimeters",
             "item width": "14.1 Centimeters",
             "item weight": "200 g",
             "product dimensions": "13.5 x 14.1 x 1.4 cm",
             "item model number": "GP65NB60",
             "included components": "Power2Go, PowerBackup, YouCam, LabelPrint and Norton internet security (60 days trial)"
}

如何使用mongodb中的更新查询将前关键品牌更新为品牌。

1 个答案:

答案 0 :(得分:1)

您可以使用$rename运算符将密钥更新为

db.collectionName.update( { _id: 1 }, { $rename: { 'brand': 'brands'} } )

并使用$set运算符来更新值,

db.collectionName.update(
   { _id: 100 },
   { $set:
      {
        key1: value1,
        key2: value2,
        .....
      }
   }
)