您好,登錄后才能下訂單哦!
使用Vue怎么實現一個本地購物車功能?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
Vue是一套用于構建用戶界面的漸進式JavaScript框架,Vue與其它大型框架的區別是,使用Vue可以自底向上逐層應用,其核心庫只關注視圖層,方便與第三方庫和項目整合,且使用Vue可以采用單文件組件和Vue生態系統支持的庫開發復雜的單頁應用。
index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>購物車實例</title> <link rel="stylesheet" href="style.css" > </head> <body> <div id="app" v-cloak> <template v-if="list.length"> <table> <thead> <tr> <th><input type="checkbox" @click='checkAll' :checked='allCheck'></th> <th>序號</th> <th>商品名稱</th> <th>商品單價</th> <th>購買數量</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="(item,index) in list"> <td><input type="checkbox" :checked='item.isChecked' @click="singleCheck(index)"></td> <td>{{index + 1}}</td> <td>{{item.name}}</td> <td>{{item.price}}</td> <td> <button @click="handleReduce(index)" :disable="item.count === 1 ">-</button> {{item.count}} <button @click="handleAdd(index)">+</button> </td> <td> <button @click="handleRemove">移除</button> </td> </tr> </tbody> </table> <div>總價 : ¥{{totalPrice}}</div> </template> <div v-else>購物車為空</div> </div> </body> <!-- 通過cdn引入--> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <script src="index.js"></script> </html>
index.js
const app = new Vue({ el : '#app', data : { allCheck:false, list : [ { id: 1 , name :'iPhone 8 ', price: 6188 , count: 1 , isChecked : false }, { id: 2 , name :'小米 8 ', price: 5888 , count: 1 , isChecked : false }, { id: 3 , name :'iPad Pro ', price: 11000 , count: 1 , isChecked : false }, { id: 4 , name :'雷神SE9', price: 6188 , count: 10 , isChecked : false }, ] }, computed : { //通過計算屬性獲取總價格 totalPrice:function() { let total = 0; const newArr = this.list.filter(value => { return value.isChecked == true }) for(var i = 0 ;i<newArr.length;i++) { total += this.list[i].price * this.list[i].count } //返回一個符合千分位格式的金額數 //return total.toString().replace(/\B(?=(\d{3})+$)/g,',') return total } }, methods : { //減法 handleReduce:function(index) { if(this.list[index].count === 1) return ; this.list[index].count--; }, //加法 handleAdd:function(index) { this.list[index].count++ }, //移除 handleRemove:function(index) { this.list.splice(index,1) }, //全選 checkAll() { this.allCheck = !this.allCheck this.list.forEach(value => { value.isChecked = this.allCheck }) }, //單選,當全部選中時,改變全選按鈕的狀態 singleCheck(index) { this.list[index].isChecked = !this.list[index].isChecked const selectData = this.list.filter(value => { return value.isChecked == true }) this.allCheck = selectData.length === this.list.length ? true : false } } })
style.css
[v-cloak] { display: none; } table { border: 1px solid #e9e9e9; border-collapse: collapse; border-spacing: 0; empty-cells: show; } th,td { padding: 8px 16px; border: 1px solid #e9e9e9; text-align: left; } th { background: yellowgreen; color: #5c6b77; font-weight: 600; white-space: nowrap; }
關于使用Vue怎么實現一個本地購物車功能問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。