您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)vue中更改數(shù)組中屬性在頁面中不生效怎么辦,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
問題描述:
使用vue的方法獲取了數(shù)組數(shù)據(jù),獲取數(shù)據(jù)后為每個(gè)數(shù)據(jù)增加edit屬性,初始值均為false,其目的是為了當(dāng)點(diǎn)擊列表中的編輯按鈕時(shí),控制保存與不保存的按鈕的出現(xiàn)與消失,結(jié)果當(dāng)更改數(shù)組中的edit屬性后,頁面并沒有如預(yù)期的那樣當(dāng)edit為true時(shí)頁面顯示更改狀態(tài),當(dāng)edit為false時(shí)為不更改狀態(tài)
解決方案:
edit是在通過post方法獲取數(shù)據(jù)后增加到vue的data數(shù)據(jù)中的屬性,一開始我的做法先將接收到的數(shù)據(jù)賦值到vue的data中,再對vue的data中的數(shù)據(jù)增加edit屬性,這樣在改變edit的之后,雖然在js中使用console.log可以看到該值已經(jīng)發(fā)生變化,但頁面中的data值并沒有發(fā)生變化。
正確的做法應(yīng)該是先為接收到的數(shù)據(jù)初始化edit屬性,再將處理后的數(shù)據(jù)賦值給vue的data。
代碼如下
<tbody> <tr v-for="(book,index) in bookList"> <td> <span v-on:click="book.edit=true" v-show=" !book.edit">{{book.orderIndex}}</span> //如果edit屬性為false,則該span出現(xiàn) <input v-show="book.edit" /> //如果edit屬性為true,則該input出現(xiàn) </td> <td> <a v-show="book.edit" v-on:click="book.edit=false" class="btn btn-primary btn-sm"> //如果edit屬性為true,出現(xiàn)不保存(x)按鈕 <i class="glyphicon glyphicon-remove" aria-hidden="true"></i> </a> <a v-show="book.edit" v-on:click="save(book)" class="btn btn-primary btn-sm"> //如果edit屬性為true,出現(xiàn)保存(√)按鈕 <i class="glyphicon glyphicon-ok" aria-hidden="true"></i> </a> </td> </tr> </tbody> <script> var politics = new Vue({ el:"#politics", data:{ bookList:[] }, methods:{ getBookList: function (offset, limit, CatalogueID, searchKey, resId) { this.limit = limit; this.offset = offset; this.CatalogueID = CatalogueID; this.searchKey = searchKey; this.resId = resId; this.$http.get("/BookAdmin/getBookList?offset=" + this.offset + "&limit=" + this.limit + "&CatalogueID=" + this.CatalogueID + "&searchKey=" + this.searchKey+"&resId="+this.resId) .then(function (resp) { resp.data.books.forEach(function (o, i) { o.edit = false; }) this.bookList = resp.data.books; // 賦值必須寫在屬性初始化的后面,否則改edit不能使頁面屬性變化 this.bookTotalCount = resp.data.totalCount; var pageNo = this.offset / this.limit + 1; var totalPage = Math.ceil(this.bookTotalCount / this.limit); divpager(pageNo, totalPage, this.bookTotalCount, this.CatalogueID, this.searchKey, this.resId); }) } } }) </script>
關(guān)于“vue中更改數(shù)組中屬性在頁面中不生效怎么辦”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。