
Vue实现一个简易的书籍购物车demo
发布日期:2021-05-12 21:18:08
浏览次数:22
分类:精选文章
本文共 3299 字,大约阅读时间需要 10 分钟。
代码如下:
index.html
//index.html书籍购物车
书籍名称 出版日期 价格 购买数量 操作 { { each.id}} { { each.name}} { { each.date}} { { each.price | showPrice}} { { each.count}} 总价格:{ { totalPrice}}
购物车为空!
CSS
table{ border: 1px solid #e9e9e9; border-collapse: collapse; border-spacing: 0;}th,td{ padding: 8px 16px; border: 1px solid #e9e9e9; text-align: left;}th{ background-color: #f7f7f7; color: #5c6b77; font-weight: 600;}
JS
const app = new Vue({ el: '#app', data: { books: [ { id: 1, name: '《算法导论》', date: '2009-9', price: 85.00, count: 1 }, { id: 2, name: '《UNIX编程艺术》', date: '2006-7', price: 59.00, count: 1 }, { id: 3, name: '《编程珠玑》', date: '2002-1', price: 39.00, count: 1 }, { id: 4, name: '《代码大全》', date: '2006-3', price: 128.00, count: 1 }, ] }, methods: { // getFinalPrice(price){ // return '¥'+price.toFixed(2) // } increment(index) { this.books[index].count++; }, decrement(index) { this.books[index].count--; }, removeHandle(index) { this.books.splice(index, 1); } }, // 过滤器 filters: { showPrice(price) { return '¥' + price.toFixed(2) } }, computed: { totalPrice() { let result = 0; // 法1:传统方法 // for (let i = 0; i < this.books.length; i++) { // result = result + this.books[i].price * this.books[i].count; // } // 法2:for index in books // for(let index in this.books){ // result += this.books[index].price * this.books[index].count; // } // 法3:for each of books // for(each of this.books){ // result += each.price *each.count // } // 法4: 直接用高阶函数 reduce return this.books.reduce(function(pre,book){ return pre + book.price * book.count; },0) return result } }})
实现情况如下:



发表评论
最新留言
感谢大佬
[***.8.128.20]2025年04月22日 16时43分16秒
关于作者

喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
域名解析步骤
2021-05-14
APP卡片式设计
2021-05-14
GitHub上传时,项目在已有文档时直接push出现错误解决方案
2021-05-14
云数据库
2021-05-14
大数据在不同领域的应用
2021-05-14
页面置换算法
2021-05-14
推荐系统资料
2021-05-14
文件系统的层次结构
2021-05-14
减少磁盘延迟时间的方法
2021-05-14
vue(渐进式前端框架)
2021-05-14
权值初始化和与损失函数
2021-05-14
案例讨论
2021-05-14
传输层基本功能
2021-05-14
问题的计算复杂度:排序问题
2021-05-14
算法的伪码表示
2021-05-14
递推方程与算法分析
2021-05-14
主定理的应用
2021-05-14
动态规划算法的迭代实现
2021-05-14
最优装载问题
2021-05-14
最大团问题
2021-05-14