更新 mongodb 和 node js 中 的 嵌套 数组 数据

vi4fp9gy  于 2022-11-22  发布在  Go
关注(0)|答案(1)|浏览(109)

我想更新**状态,我试了很多次,但是我不能更新数据。2如果你知道如何更新数据?

{
  "_id": "63064232cf92b07e37090e0a",
  "sname": "Bombay collection ",
   "name": "Hussain Khan",
   "costomer": [
            {
               "cname": "Basan",
               "cphone": 9863521480,
               "_id": "632eeff2a9b88eb59d0210f0",
               "corder": [
                      {
                          "clothType": "Shirt",
                          "date": "2022-10-21",
                          "status": "false",
                          "_id": "635283363edde6a0e9e92dc0"
                      },
                 ]
            }
        ]
 }
np8igboo

np8igboo1#

您可以使用$[<identifier>]。例如:

db.collection.update(
  {},
  {$set: {"costomer.$[elemA].corder.$[elemB].status": newStatus}},
  {arrayFilters: [
    {"elemA._id": costomerId},
    {"elemB._id": corderId}
  ]}
)

了解它在playground example上的工作原理

相关问题