Vue.js实现的购物车功能详解
网络编程 2021-07-04 15:50www.168986.cn编程入门
这篇文章主要介绍了Vue.js实现的购物车功能,结合实例形式分析了vue.js购物车的原理、数值计算及页面元素属性动态操作相关实现技巧,需要的朋友可以参考下
本文实例讲述了Vue.js实现的购物车功能。分享给大家供大家参考,具体如下
使用计算属性,内置指令,方法等基础知识开发购物车。
需求分析展示一个已经加入购物车的商品列表,包含商品名称、商品单价、购买数量和操作,以及确定是否选中商品的功能,总价格为选中商品的价格,够买数量可以增加减少,商品可以从购物车中移除。效果如图所示
——实例来自《》第五章
逻辑整理vue实例定义一个数组list存放商品信息,定义方法与减少按钮,增加按钮等联系,动态改变商品数量,通过handleRemove()
移除list中的值;利用each()
遍历所有type='checkbox'
的input,修改它们的状态,用totalPrices()
计算商品总价格。
index.html
<div id="app"> <template v-if="list.length"> <table> <thead> <tr> <th></th> <th>商品名称</th> <th>商品单价</th> <th>购买数量</th> <th>操作</th> <th><input type="checkbox" name="list" @click="checkBox()" id="checkBox"></th> </tr> </thead> <tbody> <tr v-for="(item, index) in list"> <td>{{ index + 1 }}</td> <td>{{ item.name }}</td> <td>{{ item.price }}</td> <td> <button @click="handleReduce(index)" :disabled="item.count === 1" class="btn"> - </button> {{ item.count }} <button @click="handleAdd(index)" class="btn"> + </button> </td> <td> <button @click="handleRemove(index)" class="btns">移除</button> </td> <td style="text-align: center;"> <input type="checkbox" name="list" @click="totalPrices()"> </td> </tr> </tbody> </table> <div id="price">总价¥{{totalPrice}}</div> </template> <div v-else>购物车为空</div> </div>
style.css
{ margin: 0px; padding: 0px; } [v-cloak] { display: none; } #app{ width: 200px; height: 200px; margin: 10px auto; text-align: center; } #price{ width: 457px; height: 40px; border: 1px solid #e9e9e9; border-: 0; line-height: 40px; } table{ border: 1px solid #e9e9e9; border-collapse: collapse; border-spacing: 0; empty-cells: show; } th,td{ padding: 8px 16px; border:1px solid #e9e9e9e9; text-align: left; } th{ background: #f7f7f7; color: #5c6c77; font-weight: 600; white-space: nowrap; } .btn{ width: 20px; height: 20px; border-radius: 50%; border:1px solid #; background: #ffffff; color: #778899; } .btns{ width: 40px; height: 20px; border-radius: 5px; border:1px solid #; background: #ffffff; color: #778899; line-height: 20px; }
app.js
var app=new Vue({ el:'#app', data:{ list: [ { id:1, name:'iPhone 7', price:6188, count:1 }, { id:2, name:'iPad Pro', price:5888, count:1 }, { id:3, name:'MaxBook Pro', price:21488, count:1 } ], totalPrice: 0 }, methods:{ handleReduce: function (index) {//减少按钮 if(this.list[index].count === 1){ return; } this.list[index].count--; this.$options.methods.totalPrices(); }, handleAdd: function (index) {//增加按钮 this.list[index].count++; this.$options.methods.totalPrices(); }, handleRemove: function (index) {//移除按钮 this.list.splice(index, 1); $("tr").eq(index+1).remove("input[type='checkbox']"); this.$options.methods.totalPrices(); }, checkBox: function (){//选中状态 if($("#checkBox").is(':checked')==true){ $("input[type='checkbox']").each(function(){ $("input[type='checkbox']").attr("checked",true); }); }else{ $("input[type='checkbox']").each(function(){ $("input[type='checkbox']").attr("checked",false); }); } this.$options.methods.totalPrices(); }, totalPrices: function (){//计算总价格 var total = 0; for(var i = 0;i < app.list.length;i++){ var item = app.list[i]; if($("input[type='checkbox']").eq(i+1).is(':checked')){ total += item.price item.count; } } app.totalPrice = total.toString().replace(/\B(?=(\d{3})+$)/g,','); } } });
GitHub地址https://github./GitHubVikas/Yao/tree/master/DemoOne
希望本文所述对大家vue.js程序设计有所帮助。
上一篇:实例讲解JS中pop使用方法
下一篇:JS温故而知新之变量提升和时间死区
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程