GitHub (opens new window)

监视属性

PPG007 ... 2021-12-25 About 3 min

# 监视属性

# 基本用法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="../js/vue.js"></script>
</head>
<body>
    <div id="root">
        <h2>今天天气很{{info}}</h2>
        <hr>
        <button @click="change">切换天气</button>
    </div>

    <script>
        const vm=new Vue({
            el:'#root',
            data() {
                return {
                    isHot:true,
                }
            },
            computed:{
                info(){
                    return this.isHot?'炎热':'寒冷'
                }
            },
            methods: {
                change(){
                    this.isHot=!this.isHot
                }
            },
            watch:{
                isHot:{
                    immediate:false,//设为true时,初始化时就调用
                    handler(newValue,oldValue){
                        console.log("旧值:"+oldValue)
                        console.log("新值:"+newValue)
                    }
                }
            }
        })
        //监视属性的第二种写法
        // vm.$watch('isHot',{
        //         handler(newValue,oldValue){
        //         console.log("旧值:"+oldValue)
        //         console.log("新值:"+newValue)
        //     }
        // })
    </script>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

注意

handler 方法中第一个参数是新值,第二个是旧值,不可交换顺序。

监视属性 watch:

# 深度监视

现在有如下 HTML 代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="../js/vue.js"></script>
</head>
<body>
    <div id="root">
        <h2>今天天气很{{info}}</h2>
        <hr>
        <button @click="change">切换天气</button>
        <hr>
        <h2>a:{{numbers.a}}</h2>
        <button @click="numbers.a++">点我加一</button>
        <hr>
        <h2>b:{{numbers.b}}</h2>
        <button @click="numbers.b++">点我加一</button>
    </div>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

如果要只监视 a 的变化:

// 监视多级结构中某个属性的变化
//这里必须加引号,平时不加是因为简写,但是多层次不连续的属性名不能简写
'numbers.a':{
    handler(newValue,oldValue){
        console.log("旧值:"+oldValue)
        console.log("新值:"+newValue)
    }
},
1
2
3
4
5
6
7
8

如果要能够监视 numbers 中任意值的变化:

numbers:{
    //开启深度监视
    deep:true,
    handler(newValue,oldValue){
        console.log("旧值:"+oldValue)
        console.log("新值:"+newValue)
    }
}
1
2
3
4
5
6
7
8

深度监视:

# 监视的简写形式

简写时,只有 handler 中的内容,不能配置其他参数:

watch:{
    isHot(newValue,oldValue){
        console.log("旧值:"+oldValue)
        console.log("新值:"+newValue)
    }
}
//或者
vm.$watch('isHot',function(newValue,oldValue){
    console.log("旧值:"+oldValue)
    console.log("新值:"+newValue)
})
1
2
3
4
5
6
7
8
9
10
11

# 计算属性与监视属性的区别与联系

区别:

Tips

除非必须要使用监视属性,否则能够使用计算属性完成的就不要使用监视属性,监视属性会监视被监视对象的所有内容,包括不会影响结果的值的内容,计算属性只有影响结果的数据发生变化才会重新计算,性能更好。

两个原则: