小程序商品加入購物車

小程序商品加入購物車


[基礎(chǔ)用法]

功能:用于小程序的商品加入購物車

用法:

第一步:在config.js文件中找到config設(shè)置

第二步:搜索一下shop_add_cart這個(gè)接口是否已經(jīng)存在定義(有的小程序模板已經(jīng)定義),如果沒有定義的話,在里面的底部新增以下代碼

            shopAddCartUrl: getApiUrl('shop_add_cart')

        并復(fù)制紅色部分待用,如果已經(jīng)存在,則直接復(fù)制使用即可

第三步:接口調(diào)用請(qǐng)求,如果定義名稱不同,使用第二步復(fù)制的內(nèi)容替換紅框內(nèi)選中的部分

商品加入購物車.png

提供參考的實(shí)例代碼:

    /**
     * 加入購物車(addCart) && 立即購買(buyNow) && 確認(rèn)規(guī)格選擇(specType)
     * 接收參數(shù)
     * 無需接收參數(shù),從頁面數(shù)據(jù)中取值
     * 接口傳參
     * product_id:購買的商品ID
     * product_num:購買的商品數(shù)量
     * spec_value_id:購買的商品規(guī)格ID
     */
    onConfirmSubmit() {
        let _this = this;
        let detail = _this.data.detail;
        // 提交數(shù)據(jù)
        let postData = {
            product_id: detail.aid,
            product_num: _this.data.product_num,
            spec_value_id: detail.spec_value_id ? detail.spec_value_id : 0
        };
        // 提交類型
        let submitType = _this.data.buttonType;
        // 加入購物車
        if ('addCart' == submitType{
            App._requestPost(_this, App.globalData.config.shopAddCartUrl, postData,
                function(res) {
                    _this.setData({
                        showBottomPopup: !_this.data.showBottomPopup,
                        cart_total_num: res.data.cart_total_num
                    });
                    App.showSuccess('已添加至購物車');
                },
                function(res) {
                    App.showError(res.msg);
                }
            );
        }
        // 立即購買
        else if ('buyNow' == submitType{
            App._requestPost(_this, App.globalData.config.shopBuyNowUrl, postData,
                function(res) {
                    wx.redirectTo({ url: res.url });
                },
                function(res) {
                    App.showError(res.msg);
                }
            );
        }
        // 確認(rèn)規(guī)格選擇
        else if ('specType' == submitType{
            _this.setData({
                showBottomPopup: !_this.data.showBottomPopup
            })
        }
    },


文檔最后更新時(shí)間:2023-02-28 18:22:19

文檔
目錄

深色
模式

切換
寬度