Vue2.0学习—计算属性(三十四)

Posted 王同学要努力

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue2.0学习—计算属性(三十四)相关的知识,希望对你有一定的参考价值。

【Vue2.0学习】—计算属性(三十四)

  • 定义:要用的属性不存在,要通过已有的属性得来

  • 原理:底层借助了Object.defineproperty方法提供的gettersetter

get函数什么时候执行?

  • 初次读取时会执行

  • 当依赖的数据发生变化时会被再次调用

  • 优势:与methods实现相比,内部有缓存机制,效率更高,调式方便

备注:

  • 计算属性最终会出现在vm上,直接读取使用即可
  • 如果计算属性要被修改,那必须写set函数去响应修改,且set中要引起计算时依赖的数据发生变化
   <div id="root">
        姓:<input type="text" v-model="firstname"> <br> <br> 名: <input type="text" v-model="lastname"> <br> <br> 姓名:
        <span>fullName</span>
    </div>
    <script>
        const vm = new Vue(
            el: "#root",
            data: 
                firstname: '张',
                lastname: '三'
            ,
            computed: 
                fullName: 
                    //当有人读取fullName时,get就会被调用且返回值作为fullName的值
                    // get什么时候调用?初次读取fullName时;所依赖的数据发生变化
                    get() 
                        console.log('get被调用了');
                        return this.firstname + '-' + this.lastname
                    ,
                    set(value) 
                        console.log('set', value);
                        const arr = value.split('-');
                        this.firstname = arr[0];
                        this.lastname = arr[1];
                    
                
            
        )
    </script>

简写版

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="../js/vue.js"></script>
</head>

<body>
    <!-- 
        计算属性:
        定义:要用的属性不存在,要通过已有的属性得来
        原理:底层借助了Object.defineproperty方法提供的getter和setter
        get函数什么时候执行?
        初次读取时会执行
        当依赖的数据发生变化时会被再次调用

        优势:与methods实现相比,内部有缓存机制,效率更高,调式方便
        备注:
        计算属性最终会出现在vm上,直接读取使用即可
        如果计算属性要被修改,那必须写set函数去响应修改,且set中要引起计算时依赖的数据发生变化
     -->
    <div id="root">
        姓:<input type="text" v-model="firstname"> <br> <br> 名: <input type="text" v-model="lastname"> <br> <br> 姓名:
        <span>fullName</span>
    </div>
    <script>
        const vm = new Vue(
            el: "#root",
            data: 
                firstname: '张',
                lastname: '三'
            ,
            computed: 
                //完整写法
                //     fullName: 
                //         //当有人读取fullName时,get就会被调用且返回值作为fullName的值
                //         // get什么时候调用?初次读取fullName时;所依赖的数据发生变化
                //         get() 
                //             console.log('get被调用了');
                //             return this.firstname + '-' + this.lastname
                //         ,
                //         set(value) 
                //             console.log('set', value);
                //             const arr = value.split('-');
                //             this.firstname = arr[0];
                //             this.lastname = arr[1];
                //         
                //     
                // 

                //简写
                fullName() 
                    return this.firstname + this.lastname
                
            
        )
    </script>
</body>

</html>


以上是关于Vue2.0学习—计算属性(三十四)的主要内容,如果未能解决你的问题,请参考以下文章

Vue2.0学习—watch和computed对比(三十七)

Vue2.0学习— 过滤器(四十四)

Vue2.0学习—理解数据代理(三十一)

Vue2.0—ref属性(十四)

Vue2.0学习—键盘事件(三十三)

Vue2.0学习—Object.defineProperty(三十)