您好,登錄后才能下訂單哦!
這篇文章主要介紹Vue自定義指令如何實現checkbox全選功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
代碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="app"> <input type="checkbox" v-model="allCheck" v-check-all="allCheck" check-data="list" result="customerResult" key="demo"> 全選 <ul> <li v-for="item in list"> <input type="checkbox" v-model="item.checked"> {{item.demo}} </li> </ul> <div > customerResult: {{customerResult}} </div> </div> <script src="vue.js"></script> <script> var vm = new Vue({ el: "#app", data:function(){ return { list:[{demo:1}, {demo:2}, {demo:3}], allCheck:'', customerResult:'', } }, directives: { 'check-all': { twoWay: true, params: ['checkData','result','key'], bind() { /*為原始數據的每一個對象添加一個checked屬性*/ this.vm[this.params.checkData].forEach((item)=>{ Vue.set(item,'checked',false) }); /*提取被選中的項*/ this.setValue=function(){ let result=[] this.vm[this.params.checkData].forEach((item) => { if(item.checked){ result.push(item[this.params.key]) } }); this.vm[this.params.result]=result } /*如果所有的列表的checked屬性都為true,則選中全選框,否則不選中全選框 */ this.vm.$watch(this.params.checkData, (data) => { if(data.every((item) => item.checked)) { this.set(true); } else { this.set(false); } this.setValue() }, {deep: true}); }, // checkAll發生更改時 update(checkAll) { /*如果全選框被選中,則將列表的所有checked屬性轉為true,否則轉為false */ if(checkAll) { this.vm[this.params.checkData].forEach((item) => { item.checked = true; }); } else { this.vm[this.params.checkData].forEach((item) => { item.checked = false; }); } this.setValue() }, }, } }) </script> </body> </html>
通常我們都要獲取原始數據中的某個鍵值,可在“key”中填進想要獲取的鍵值,“result”就是被選中的項了。
有時,我們需要返回一個完整的對象修改一下代碼,當不輸入key時,返回一個完整的對象數組
this.setValue=()=>{ let result=[] this.vm[this.params.checkData].forEach((item) => { //刪除checked屬性 let temp={}; (()=>delete Object.assign(temp,item).checked)(); item.checked?result.push(item[this.params.key]||temp):""; }); this.vm[this.params.result]=result }
但時,這時,返回來的數組中對象中并沒有與與原數據是相同的引用地址,當需要使用array.$remove()函數時就會失敗,新增一個relative參數,用戶自定義判斷返回的數據是否與原始數據關聯
this.setValue = () => { let result = [] this.vm[this.params.checkData].forEach((item) => { if(this.params.relative) { item.checked ? result.push(item) : ""; }else{ //刪除checked屬性 let temp = {}; (() => delete Object.assign(temp, item).checked)(); item.checked ? result.push(item[this.params.key] || temp) : ""; } }); this.vm[this.params.result] = result }
當數據長度大于2個時,需要判斷2N次,相當消耗性能,優化一下:
'check-all', { twoWay: true, params: ['checkData', 'result', 'key','relative'], /*checkData:列表數據, result:返回的結果, key:列表數據中需要返回的字段, relative:是否返回與列表數據相同引用地址的選中結果*/ bind() { /*提取被選中的項*/ this.setValue = () => { let result = [] if (this.params.relative) { this.vm[this.params.checkData].forEach((item) => { item.checked ? result.push(item) : ""; }); } else { this.vm[this.params.checkData].forEach((item) => { //刪除checked屬性 let temp = {}; (() => delete Object.assign(temp, item).checked)(); item.checked ? result.push(item[this.params.key] || temp) : ""; }); } this.vm[this.params.result] = result }; /*為原始數據的每一個對象添加一個checked屬性*/ this.addChecked = () => { this.vm[this.params.checkData].forEach((item) => { Vue.set(item, 'checked', false) }); }; /*如果所有的列表的checked屬性都為true,則選中全選框,否則不選中全選框 */ this.vm.$watch(this.params.checkData, (data) => { if(!data.length) return; data.every((item) => item.checked) ? this.set(true) : this.set(false); this.setValue() }, {deep: true}); //當列表發生變化時重新綁定 this.vm.$watch(this.params.checkData, (data) => { if(!data.length) return this.addChecked(); }); }, // checkAll發生更改時 update(checkAll) { /*如果全選框被選中,則將列表的所有checked屬性轉為true,否則轉為false */ checkAll ? this.vm[this.params.checkData].forEach((item) => { item.checked = true }) : this.vm[this.params.checkData].forEach((item) => { item.checked = false }); this.setValue() }, }
這時只需要判斷N+1次。
以上是“Vue自定義指令如何實現checkbox全選功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。