您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue中的Vue.set和this.$set怎么使用”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“Vue中的Vue.set和this.$set怎么使用”文章能幫助大家解決問(wèn)題。
由于JavaScript的限制,Vue無(wú)法檢測(cè)到data中數(shù)組和對(duì)象的變化,因此也不會(huì)觸發(fā)視圖更新。
Vue對(duì)這些JS數(shù)組方法進(jìn)行了封裝,通過(guò)這些方法是可以檢測(cè)到數(shù)組更新的。
如下例中,是要實(shí)現(xiàn)vm.items[1] = 'excess'
<body> <div id="app"> <ul> <li v-for="(item, index) in items"> {{ index }} : {{ item }} </li> </ul> </div> <script> let vm = new Vue({ el: '#app', data: { items: ['a', 'b', 'c'] }, created() { this.items = ['a', 'test', 'c'] } }) </script> </body>
如下例中,是要實(shí)現(xiàn)給object新增一個(gè)鍵值對(duì){test: 'newthing'}
<body> <div id="app"> <ul> <li v-for="(value, name) in object"> {{ name }} : {{ value }} </li> </ul> </div> <script> let vm = new Vue({ el: '#app', data: { object: { title: 'How to do lists in Vue', author: 'Jane Doe', publishedAt: '2016-04-10' } }, created() { this.object = { title: 'How to do lists in Vue', author: 'Jane Doe', publishedAt: '2016-04-10', test: 'newthing' } } }) </script> </body>
Vue不能檢測(cè)以下數(shù)組的變動(dòng):
利用索引值直接設(shè)置一個(gè)數(shù)組項(xiàng)時(shí),例如vm.list[0]=newValue
修改數(shù)組長(zhǎng)度時(shí),例如vm.list.length=newLength
舉個(gè)栗子
var vm = new Vue({ data: { items: ['a', 'b', 'c'] } }) vm.items[1] = 'x' // 不是響應(yīng)性的 vm.items.length = 2 // 不是響應(yīng)性的
這時(shí)可以使用Vue.set或者this.$set
Vue.set(target,index,newValue)
// Vue.set Vue.set(vm.items, indexOfItem, newValue)
// this.$set vm.$set(vm.items, indexOfItem, newValue)
Vue 無(wú)法檢測(cè) property 的添加或移除。由于 Vue 會(huì)在初始化實(shí)例時(shí)對(duì) property 執(zhí)行 getter/setter 轉(zhuǎn)化,所以 property 必須在 data 對(duì)象上存在才能讓 Vue 將它轉(zhuǎn)換為響應(yīng)式的。
舉個(gè)栗子
var vm = new Vue({ data:{ a:1 } }) // `vm.a` 是響應(yīng)式的 vm.b = 2 // `vm.b` 是非響應(yīng)式的
Vue.set(target,key,value)
Vue.set(vm.someObject, 'b', 2)
this.$set(this.someObject,'b',2)
Vue不允許動(dòng)態(tài)添加根級(jí)響應(yīng)式屬性
const app = new Vue({ data: { a: 1 } // render: h => h(Suduko) }).$mount('#app1') Vue.set(app.data, 'b', 2)
只可以使用 Vue.set(object, propertyName, value) 方法向嵌套對(duì)象添加響應(yīng)式屬性
var vm=new Vue({ el:'#test', data:{ //data中已經(jīng)存在info根屬性 info:{ name:'小明'; } } }); //給info添加一個(gè)性別屬性 Vue.set(vm.info,'sex','男');
當(dāng)我們對(duì)data中的數(shù)組或?qū)ο筮M(jìn)行修改時(shí),有些操作方式是非響應(yīng)式的,Vue檢測(cè)不到數(shù)據(jù)更新,因此也不會(huì)觸發(fā)視圖更新。此時(shí)需要使用Vue.set()進(jìn)行響應(yīng)式的數(shù)據(jù)更新。
關(guān)于“Vue中的Vue.set和this.$set怎么使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。