0

我试图将数据插入 mongodb.its 成功插入,但我面临错误的文档插入 mongodb.how 使用 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 中的更新查询将关键品牌更新为品牌。

4

1 回答 1

6

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

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

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

db.collectionName.update(
   { _id: 100 },
   { $set:
      {
        key1: value1,
        key2: value2,
        .....
      }
   }
)
于 2019-05-28T09:40:11.233 回答