Vue陣列變化的偵測的學習

睡觉爱打呼噜發表於2024-05-14

陣列的監聽

有兩種方法
變更方法和替換陣列
####兩者的區別就是 變更方法會引起ui的自動更新即直接會顯示在頁面上,但是替換陣列不會,

變更方法

push()
pop()
shift()
unshift()
splice()
sort()
reverse()

替換陣列

concat()
filter()
slice()

如何實現替換陣列相當於是變更方法

    //變更方法監聽資料
            this.names.push('1111111')
            //替換陣列
           console.log( this.names.concat(["jinshan"]) );
           //如果想實現替換陣列和變更方法一樣的去顯示
           this.names=this.names.concat(["jinshanLLLLLL"])

相關文章