var books = [{name:'西游记',author:'吴承恩',price: 58,count:5},{name:'三国演义',author:'罗贯中',price: 68,count: 6},{name:'水浒传',author:'施耐庵',price: 48,count:8},{name:'红楼梦',author:'曹雪芹',price: 78,count:10}]
(1) 通过for循环 计算总价格
let totalPrice = 0
for(let i=0;
i
(2)
let totalPrice = 0
for(let i in this.books) {
this.totalPrice += this.books[i].price * this.books[i].count
}
【遍历数组中的数据的方法】(3)
let totalPrice = 0
for(let item of this.books) {// item为每一项的下标
totalPrice += item.price * item.count
}
推荐阅读
- Vue v-show 和 v-if 的区别以及使用场景
- uniapp|uniapp 实现保持登录状态
- vue|记事本(本地应用,基于vue.js)
- 前端|vue快基础知识快速入门
- 浙里办|浙里办接入h5(vue项目)------相关流程说明
- js方法|Vuex入门(六)——mapState, mapGetters, mapMutations, mapActions全网最全详解终结篇(带源码)
- GitHub|GitHub克隆项目没数据,后台管理权限项目等,解决方法
- 笔记|使用Vue时候报错,怎么查看错误位置,如何解决,方法,有哪些
- vue|Vue项目使用开发工具vuejs-devtools最新简单安装方法