06.computed 与 methods 的区别(以数组为例)

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>

</head>
<body>

<div id="app">
  <h2>总价格:{{totalPrice}}</h2>
</div>

<!-- 引入vue.js 文件-->
<script src="../js/vue.js"></script>
<script>
  new Vue({
    el: '#app',
    data: {
      books: [
        {id: 11, name: 'java', price: 112},
        {id: 22, name: 'C++', price: 113},
        {id: 33, name: 'PHP', price: 115},
        {id: 44, name: 'python', price: 116}
      ]
    },
    // computed 模块是有缓存的,也是专门计算属性的一个模块,如果多次使用时,它只会执行一次
    // 而 methods 方法是调用几次它就会执行几次,性能相对computed会更低一点
    // 但是在computed 计算属性时,值发生改变,那么computed会再重新执行一次
    computed: {
      totalPrice:function () {
        let result = 0 ;

        //方式一
        for (le t i = 0; i <this.books.length; i++) {
          result += this.books[i].price
        }
        //方式二
        for (let i in this.books) {
          result += this.books[i].price;
        }
        //方式三
        for (let book of this.books) {
          result += book.price;
        }

        return  result;
      }
    }

  })
</script>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值