共用方式為


$pop (陣列更新)

$pop MongoDB 中的運算符是用來移除陣列的第一個或最後一個專案。 當您需要從任一端移除元素來管理數位時,這個運算子很有用。 $pop運算子可用於更新作業。

語法

{ $pop: { <field>: <value> } }
  • <field>:包含您要從中移除專案之陣列的欄位。
  • <value>:使用 1 移除最後一個專案,以及 -1 移除第一個專案。

參數

描述
<field> 包含您要從中移除元素之陣列的欄位。
<value> 使用 1 移除最後一個專案,以及 -1 移除第一個專案。

範例

讓我們瞭解下列範例 json 的使用方式。

{
  "_id": "7954bd5c-9ac2-4c10-bb7a-2b79bd0963c5",
   "name": "Lakeshore Retail | DJ Equipment Stop - Port Cecile",
  "location": {
    "lat": 60.1441,
    "lon": -141.5012
  },
  "staff": {
    "totalStaff": {
      "fullTime": 2,
      "partTime": 0
    }
  },
  "sales": {
    "salesByCategory": [
      {
        "categoryName": "DJ Headphones",
        "totalSales": 35921
      }
    ],
    "fullSales": 3700
  },
  "promotionEvents": [
    {
      "eventName": "Bargain Blitz Days",
      "promotionalDates": {
        "startDate": {
          "Year": 2024,
          "Month": 3,
          "Day": 11
        },
        "endDate": {
          "Year": 2024,
          "Month": 2,
          "Day": 18
        }
      },
      "discounts": [
        {
          "categoryName": "DJ Turntables",
          "discountPercentage": 18
        },
        {
          "categoryName": "DJ Mixers",
          "discountPercentage": 15
        }
      ]
    }
  ],
  "tag": [
    "#ShopLocal",
    "#SeasonalSale",
    "#FreeShipping",
    "#MembershipDeals"
  ]
}

範例 1:從陣列中移除最後一 tag 個標籤

db.stores.update(
  { "_id": "7954bd5c-9ac2-4c10-bb7a-2b79bd0963c5" },
  { $pop: { "tag": 1 } }
)

此查詢會傳回下列檔。 會移除陣列中的最後一個專案。

{
  "acknowledged": true,
  "insertedId": null,
  "matchedCount": "1",
  "modifiedCount": "1",
  "upsertedCount": 0
}

範例 2:從陣列中移除最後一個 promotionEvents 折扣

db.stores.update(
  { "_id": "7954bd5c-9ac2-4c10-bb7a-2b79bd0963c5" },
  { $pop: { "promotionEvents": -1 } }
)

此查詢會傳回下列檔。 會移除陣列中的第一個專案。

{
  "acknowledged": true,
  "insertedId": null,
  "matchedCount": "1",
  "modifiedCount": "1",
  "upsertedCount": 0
}