91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue怎么通過笛卡兒積實現sku庫存配置

發布時間:2023-04-19 15:38:59 來源:億速云 閱讀:116 作者:iii 欄目:開發技術

今天小編給大家分享一下vue怎么通過笛卡兒積實現sku庫存配置的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

    vue通過笛卡兒積實現sku庫存配置

    以兩個屬性為例子,舉例說明:

    1x1:
    白色
    S
    結合之后就是
    [白色,S]

     this.selectCheckArr=[
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 00,
                "attrValueName": "白色"
            }
        ],
        [
            {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 11,
                "attrValueName": "S"
            }
        ]
    ]
     this.selectCheckArr = this.getProducts(this.selectCheckArr)
     console.log(this.selectCheckArr)
     /** 輸出:[
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 00,
                "attrValueName": "白色"
            },
            {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 11,
                "attrValueName": "S"
            }
        ]
    ]
    **/

    1x2
    白色 黃色
    S
    結合之后就是
    [白色,S ],[黃色,S ]

     this.selectCheckArr=[
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 00,
                "attrValueName": "白色"
            },
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 01,
                "attrValueName": "黃色"
            }
        ],
        [
            {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 11,
                "attrValueName": "S"
            }
        ]
    ]
     this.selectCheckArr = this.getProducts(this.selectCheckArr)
     console.log(this.selectCheckArr)
     /** 輸出: 
     [
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 00,
                "attrValueName": "白色"
            },
            {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 11,
                "attrValueName": "S"
            }
        ],
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 01,
                "attrValueName": "黃色"
            },
           {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 11,
                "attrValueName": "S"
            }
        ]
    ]
    **/

    2x2
    白 黃
    S M
    結合之后就是
    [白色,S ],[白色,M ],[黃色,S ],[黃色,M ]

     this.selectCheckArr= [
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 00,
                "attrValueName": "白色"
            },
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 01,
                "attrValueName": "黃色"
            }
        ],
        [
            {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 11,
                "attrValueName": "S"
            },
            {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 12,
                "attrValueName": "M"
            }
        ]
    ]
     this.selectCheckArr = this.getProducts(this.selectCheckArr)
     console.log(this.selectCheckArr)
     /** 輸出: 
     [
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 00,
                "attrValueName": "白色"
            },
            {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 11,
                "attrValueName": "S"
            }
        ],
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 00,
                "attrValueName": "白色"
            },
            {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 12,
                "attrValueName": "M"
            }
        ],
        [
             {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 01,
                "attrValueName": "黃色"
            },
             {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 11,
                "attrValueName": "S"
            }
        ],
        [
            {
                "attrId": 0,
                "attrName": "顏色",
                "attrValueId": 01,
                "attrValueName": "黃色"
            },
           {
                "attrId": 1,
                "attrName": "大小",
                "attrValueId": 12,
                "attrValueName": "M"
            }
        ]
    ]
    **/

    笛卡兒積方法

        // 笛卡兒積
          getProducts(specs) {
            if (!specs || specs.length == 0) {
              return [];
            } else {
              return joinSpec([
                []
              ], specs, 0, specs.length - 1);
            }
    
            function joinSpec(prevProducts, specs, i, max) {
              var currentProducts = [],
                currentProduct, currentSpecs = specs[i];
              if (i > max) {
                return prevProducts;
              }
              prevProducts.forEach(function (prevProduct) {
                currentSpecs.forEach(function (spec) {
                  currentProduct = prevProduct.slice(0);
                  currentProduct.push(spec);
                  currentProducts.push(currentProduct);
                });
              });
              return joinSpec(currentProducts, specs, ++i, max);
            }
          },

    注意

    this.getProducts()的入參,需與博主保持一致(數組對象),否則會有問題哦~
    如果是1x1 ,就是總共生成1條
    [ [ { } ] , [ { } ] ],變成 [ [ { } , { } ] ]
    如果是2x1 ,就是總共生成2條
    [ [ { } ,{ } ] , [ { } ] ] 變成 [ [ { } ,{ } ] , [ { } ,{ } ] ]

    笛卡爾積生成商品SKU組合

        var arr = [
            ['黑色', '白色', '藍色'],
            ['8GB', '16GB', '32GB'],
            ['大', '中', '小']
        ];
     
        /**
         * 生成笛卡爾積
         * @returns {*}
         */
        function descartes(array) {
            if (array.length < 2) return array[0] || [];
            return [].reduce.call(array, function (col, set) {
                var res = [];
                col.forEach(function (c) {
                    set.forEach(function (s) {
                        var t = [].concat(Array.isArray(c) ? c : [c]);
                        t.push(s);
                        res.push(t);
                    })
                });
                return res;
            });
        }
        console.log(descartes(arr));

    該方法用于根據商品規格屬性生成商品SKU組合,以上為javascript代碼

    執行結果如下:

        0: ["黑色", "8GB", "大"]
        1: ["黑色", "8GB", "中"]
        2: ["黑色", "8GB", "小"]
        3: ["黑色", "16GB", "大"]
        4: ["黑色", "16GB", "中"]
        5: ["黑色", "16GB", "小"]
        6: ["黑色", "32GB", "大"]
        7: ["黑色", "32GB", "中"]
        8: ["黑色", "32GB", "小"]
        9: ["白色", "8GB", "大"]
        10: ["白色", "8GB", "中"]
        11: ["白色", "8GB", "小"]
        12: ["白色", "16GB", "大"]
        13: ["白色", "16GB", "中"]
        14: ["白色", "16GB", "小"]
        15: ["白色", "32GB", "大"]
        16: ["白色", "32GB", "中"]
        17: ["白色", "32GB", "小"]
        18: ["藍色", "8GB", "大"]
        19: ["藍色", "8GB", "中"]
        20: ["藍色", "8GB", "小"]
        21: ["藍色", "16GB", "大"]
        22: ["藍色", "16GB", "中"]
        23: ["藍色", "16GB", "小"]
        24: ["藍色", "32GB", "大"]
        25: ["藍色", "32GB", "中"]
        26: ["藍色", "32GB", "小"]

    以上就是“vue怎么通過笛卡兒積實現sku庫存配置”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    桂林市| 军事| 涿鹿县| 永顺县| 威海市| 南汇区| 满洲里市| 睢宁县| 沙河市| 阿尔山市| 林周县| 金华市| 镇巴县| 梁山县| 额济纳旗| 涞水县| 景宁| 德安县| 电白县| 泊头市| 乌兰察布市| 宁国市| 乌鲁木齐市| 清涧县| 佛坪县| 米林县| 凤庆县| 邛崃市| 绿春县| 保靖县| 武隆县| 诸城市| 广丰县| 西盟| 沅江市| 山东省| 武清区| 永仁县| 新昌县| 井陉县| 龙州县|