繁体   English   中英

如何使用 MongoDB 将 object 值的嵌套数组转换为逗号分隔的字符串

[英]How to convert nested array of object values to comma separated string using MongoDB

我的文档中有一些嵌套的对象数组,使用 MongoDb。 我在下面解释我的文件。

{
  "Products" : [ 
        {
            "ID" : 0,
            "StoreCode" : "CMHB",
            "StoreName" : "CMR NPS",
            "StoreDescription" : "CMR NPS  International Store is a place where Parents can purchase all the school merchandise in one place at reasonable prices.",
            "StoreBranch" : "HRBR Layout",
            "AddressLine1" : "HRBR Layout",
            "AddressLine2" : "HRBR Layout",
            "Street" : "",
            "Landmark" : "",
            "Latitude" : "0",
            "Longitude" : "0",
            "City" : "Bengaluru",
            "State" : "Karnataka",
            "Country" : "India",
            "Pincode" : "560043",
            "StoreType" : "Online",
            "WarehouseCode" : "D0001",
            "Description" : "",
            "ProductName" : "Grade-12 Commerce EABM Book Kit",
            "ProductCode" : "VNTKEPCBM",
            "ProductType" : "S",
            "Brand" : "EP",
            "VendorCode" : "",
            "SKU" : "CMHBVNTKEPCBM",
            "CONSKU" : "",
            "BASESKU" : "",
            "PARENTSKU" : "",
            "SubProducts" : [],
            "CategoryId" : "",
            "CategoryName" : "Books/Kit",
            "AttributeSet" : "4000000",
            "Gender" : "",
            "BaseUnitPrice" : 0,
            "TaxPercentage" : 0,
            "HSNCode" : 4901,
            "BaseUnitOfMeasure" : "",
            "Weight" : 0,
            "TaxAmount" : 0,
            "MRP" : 0,
            "Weightage" : "",
            "DiscountPrice" : 0,
            "TotalOrderQuantity" : 1,
            "TotalProductPrice" : 0,
            "TotalProductDiscountPrice" : 0,
            "MinimumPrice" : 0,
            "CurrencyCode" : "INR",
            "MinimumBuyQty" : 1,
            "MaximumBuyQty" : 1,
            "TotalBaseUnitofMeasure" : "",
            "TotalWeight" : ""
        }
    ],
}

所以这是一个示例记录,我有一个具有一个键名SKU的产品数组。 我需要用逗号分隔的字符串连接所有SKU值。 让我在下面解释我现有的查询。

db.getCollection('orders').aggregate([
      {
          $match: {"Customer.StoreCode":"CMHB"}
      },
      {
          $group: {
              _id : "$Customer.CustomerMobile", 
              "data" : {
                  "$push": {
                     OrderNumber:"$OrderNumber",
                    OrderStatus:"$OrderStatus",
                    OrderType:"$OrderType",
                    CreatedAt:{ $dateToString: { format: "%Y-%m-%d", date: "$CreatedAt" } },
                    CustomerMobile: "$Customer.CustomerMobile",
                    CustomerLastName:"$Customer.CustomerLastName",
                    CustomerFirstName:"$Customer.CustomerFirstName",
                    StoreCode:"$Customer.StoreCode",
                    TransactionId:"$PaymentDetails.TransactionId",
                    PaymentStatus:"$PaymentDetails.PaymentStatus",
                    PaymentAmount:"$PaymentDetails.PaymentAmount",
                    ItemNos: { $cond: { if: { $isArray: "$Products" }, then: { $size: "$Products" }, else: "NA"} },
                    BillingAddressesLine1: "$Customer.BillingDetails.BillingAddressesLine1",
                    BillingAddressesLine2: "$Customer.BillingDetails.BillingAddressesLine2"
                  }
              }
          }
      }
]).toArray()

在这里,我需要再添加一个键ie-SKU ,它的值应该是产品数组中所有 sku 值的逗号分隔字符串, eg-sku1,sku2,sku3....

您需要添加以下更改:

你的$group阶段需要这个:

SKU: { $push: "$Products.SKU"} // Since SKU is in Products array, final SKU will be array of arrays [[123,456], [789]]

添加一个新阶段$addFields

{
      $addFields: {
        SKU: {
          $substr: [
            {
              "$reduce": {
                "input": { "$reduce": { "input": "$SKU", "initialValue": [], "in": { "$setUnion": [ "$$value", "$$this" ] } } }, // Merge array of arrays to one array
                "initialValue": "",
                "in": { "$concat": [ "$$value", ",", "$$this" ] } // Concat array of strings to one string & remove first char from final string which is `,`
              }
            },
            1,
           -1
         ]
       }
     }
  }

测试: mongoplayground

参考:聚合

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM