小程序商品立即購買
小程序商品立即購買
[基礎(chǔ)用法]
功能:用于小程序的商品立即購買
用法:
第一步:在config.js文件中找到config設(shè)置
第二步:搜索一下shop_buy_now這個接口是否已經(jīng)存在定義(有的小程序模板已經(jīng)定義),如果沒有定義的話,在里面的底部新增以下代碼
shopBuyNowUrl: getApiUrl('shop_buy_now')
并復(fù)制紅色部分待用,如果已經(jīng)存在,則直接復(fù)制使用即可
第三步:接口調(diào)用請求,如果定義名稱不同,使用第二步復(fù)制的內(nèi)容替換紅框內(nèi)選中的部分
提供參考的實例代碼:
/**
* 加入購物車(addCart) && 立即購買(buyNow) && 確認規(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);
}
);
}
// 確認規(guī)格選擇
else if ('specType' == submitType) {
_this.setData({
showBottomPopup: !_this.data.showBottomPopup
})
}
},
文檔最后更新時間:2023-03-01 09:22:32
← 小程序商品加入購物車
小程序商品下單展示 →
未解決你的問題?請到「問答社區(qū)」反饋你遇到的問題