Vue之監聽數據的原理詳解

在這裡插入圖片描述

<body>
    <div id="root">
        <h1>學生的基本信息</h1>
        <button @click="student.age++">年齡+1歲</button>
        <button @click="addSex">添加性別屬性默認值是男</button><br>
        <button @click="student.sex='未知' ">修改屬性值</button><br>
        <button @click="addFriend">在列表的首位就添加一個朋友</button><br>
        <button @click="updateFriend">更新第一個人的名字</button><br>
        <button @click="addHobby">添加一個愛好</button><br>
        <button @click="change">修改第一個愛好為爬山</button><br>
        <button @click="removeSmoke">過濾掉抽煙</button><br>
        <h3>姓名:{{student.name}}</h3>
        <h3>年齡:{{student.age}}</h3>
        <h3 v-if="student.sex">性別:{{student.sex}}</h3>
        <h3>愛好:</h3>
        <hr>
        <ul>
            <li v-for="(h,index) in student.hobby" :key="index">{{h}}</li>
        </ul>
        <hr>
        <h3>朋友們:</h3>
        <ul>
            <li v-for="(f,index) in student.friends" :key="index">{{f.name}}--{{f.age}}</li>
        </ul>
    </div>
    <script>
        Vue.config.productionTip = false;
        const vm = new Vue({
            el: "#root ",
            data: {
                student: {
                    name: 'zhang',
                    age: 18,
                    hobby: ['喝酒', '抽煙', '燙頭'],
                    friends: [{
                        name: 'li',
                        age: 15
                    }, {
                        name: 'wang',
                        age: 10
                    }]
                }
            },
            methods: {
                addSex() {
                    this.$set(this.student, 'sex', '男')
                        // Vue.set(vm.student, 'sex', '男')
                },
                addFriend() {
                    this.student.friends.unshift({
                        name: 'YY',
                        age: 66
                    })
                },
                updateFriend() {
                    this.student.friends[0].name = "小劉";
                    this.student.friends[0].age = 22
                },
                addHobby() {
                    this.student.hobby.push('唱歌')
                },
                change() {
                    //splice添加表示從第0個開始,刪除一個,新增加的值是爬山
                    //註意:不能直接通過數組下標的形式進行修改 
                    //this.student.hobby.splice(0, 1, '爬山')
                    //Vue.set(this.student.hobby, 0, '爬山')
                    this.$set(this.student.hobby, 0, '爬山')
                },
                removeSmoke() {
                    //filter不影響原數組的改變
                    this.student.hobby = this.student.hobby.filter((h) => {
                        return h !== '抽煙'
                    })
                }
            }
        })
    </script>
</body>

總結

本篇文章就到這裡瞭,希望能夠給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!

推薦閱讀: