小編給大家分享一下微信小程序中如何實現(xiàn)購物車功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
岳陽樓ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書合作)期待與您的合作!
需求
先來弄清楚購物車的需求。
單選、全選和取消,而且會隨著選中的商品計算出總價
單個商品購買數(shù)量的增加和減少
刪除商品。當(dāng)購物車為空時,頁面會變?yōu)榭召徫镘嚨牟季?/p>
根據(jù)設(shè)計圖,我們可以先實現(xiàn)靜態(tài)頁面。接下來,再看看一個購物車需要什么樣的數(shù)據(jù)。
首先是一個商品列表(carts),列表里的單品需要:商品圖(image),商品名(title),單價(price),數(shù)量(num),是否選中(selected),商品id(id)
然后左下角的全選,需要一個字段(selectAllStatus)表示是否全選了
右下角的總價(totalPrice)
最后需要知道購物車是否為空(hasList)
知道了需要這些數(shù)據(jù),在頁面初始化的時候我們先定義好這些。
代碼實現(xiàn)
初始化
Page({ data: { carts:[], // 購物車列表 hasList:false, // 列表是否有數(shù)據(jù) totalPrice:0, // 總價,初始為0 selectAllStatus:true // 全選狀態(tài),默認(rèn)全選 }, onShow() { this.setData({ hasList: true, // 既然有數(shù)據(jù)了,那設(shè)為true吧 carts:[ {id:1,title:'新鮮芹菜 半斤',image:'/image/s5.png',num:4,price:0.01,selected:true}, {id:2,title:'素米 500g',image:'/image/s6.png',num:1,price:0.03,selected:true} ] }); }, })
購物車列表數(shù)據(jù)我們一般是通過請求服務(wù)器拿到的數(shù)據(jù),所以我們放在生命周期函數(shù)里給 carts 賦值。想到每次進(jìn)到購物車都要獲取購物車的最新狀態(tài),而onLoad和onReady只在初始化的時候執(zhí)行一次,所以我需要把請求放在 onShow 函數(shù)里。(這里先拿點(diǎn)假數(shù)據(jù)冒充一下吧)
布局wxml
修好之前寫好的靜態(tài)頁面,綁定數(shù)據(jù)。
{{item.title}} ¥{{item.price}} - {{item.num}} + × 全選 ¥{{totalPrice}}
計算總價
總價 = 選中的商品1的 價格 * 數(shù)量 + 選中的商品2的 價格 * 數(shù)量 + ...
根據(jù)公式,可以得到
getTotalPrice() { let carts = this.data.carts; // 獲取購物車列表 let total = 0; for(let i = 0; i頁面中的其他操作會導(dǎo)致總價格變化的都需要調(diào)用該方法。
選擇事件
點(diǎn)擊時選中,再點(diǎn)擊又變成沒選中狀態(tài),其實就是改變 selected 字段。通過 data-index="{{index}}" 把當(dāng)前商品在列表數(shù)組中的下標(biāo)傳給事件。
selectList(e) { const index = e.currentTarget.dataset.index; // 獲取data- 傳進(jìn)來的index let carts = this.data.carts; // 獲取購物車列表 const selected = carts[index].selected; // 獲取當(dāng)前商品的選中狀態(tài) carts[index].selected = !selected; // 改變狀態(tài) this.setData({ carts: carts }); this.getTotalPrice(); // 重新獲取總價 }全選事件
全選就是根據(jù)全選狀態(tài) selectAllStatus 去改變每個商品的 selected
selectAll(e) { let selectAllStatus = this.data.selectAllStatus; // 是否全選狀態(tài) selectAllStatus = !selectAllStatus; let carts = this.data.carts; for (let i = 0; i < carts.length; i++) { carts[i].selected = selectAllStatus; // 改變所有商品狀態(tài) } this.setData({ selectAllStatus: selectAllStatus, carts: carts }); this.getTotalPrice(); // 重新獲取總價 }增減數(shù)量
點(diǎn)擊+號,num加1,點(diǎn)擊-號,如果num > 1,則減1
// 增加數(shù)量 addCount(e) { const index = e.currentTarget.dataset.index; let carts = this.data.carts; let num = carts[index].num; num = num + 1; carts[index].num = num; this.setData({ carts: carts }); this.getTotalPrice(); }, // 減少數(shù)量 minusCount(e) { const index = e.currentTarget.dataset.index; let carts = this.data.carts; let num = carts[index].num; if(num <= 1){ return false; } num = num - 1; carts[index].num = num; this.setData({ carts: carts }); this.getTotalPrice(); }刪除商品
點(diǎn)擊刪除按鈕則從購物車列表中刪除當(dāng)前元素,刪除之后如果購物車為空,改變購物車為空標(biāo)識hasList為false
deleteList(e) { const index = e.currentTarget.dataset.index; let carts = this.data.carts; carts.splice(index,1); // 刪除購物車列表里這個商品 this.setData({ carts: carts }); if(!carts.length){ // 如果購物車為空 this.setData({ hasList: false // 修改標(biāo)識為false,顯示購物車為空頁面 }); }else{ // 如果不為空 this.getTotalPrice(); // 重新計算總價格 } }以上是“微信小程序中如何實現(xiàn)購物車功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
本文題目:微信小程序中如何實現(xiàn)購物車功能
轉(zhuǎn)載來源:http://weahome.cn/article/jjescg.html