您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vuejs如何從數組中刪除元素”,在日常操作中,相信很多人在Vuejs如何從數組中刪除元素問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Vuejs如何從數組中刪除元素”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
使用方法:arr.splice(arr.indexOf(ele),length):表示先獲取這個數組中這個元素的下標,然后從這個下標開始計算,刪除長度為length的元素 這種刪除方式適用于任何js數組
eg:
<template> <div class="users"> <button type="button" class="btn btn-danger" v-on:click="deleteUser(user)"><span class="glyphicon glyphicon-trash" aria-hidden="true"></span>刪除</button> </div> </template> <script> //引入jquery export default { data(){ return { users:[ { name:'zx', age:18, addrress:'江蘇南京', email:'1773203101@qq.com', contacted:false, }, { name:'zhiyi', age:19, addrress:'中國北京', email:'1773203101@qq.com', contacted:false, }, { name:'zhuxu', age:20, addrress:'中國上海', email:'1773203101@qq.com', contacted:false, }, ] } }, methods:{ deleteUser:function(user){ //表示先獲取這個元素的下標,然后從這個下標開始計算,刪除長度為1的元素 this.users.splice(this.users.indexOf(user),1); } } }; </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <!--scope只會影響到當前組件的樣式--> <style scoped> </style>
let arr = [1,2,3,4,5]; //方法一 let index = arr.indexOf('3'); arr.splice(index, 1) //打印結果 [1,2,4,5] //方法二 let index = arr .findIndex(item => { if (item == '3') { return true } }) arr.splice(index, 1) //打印結果 [1,2,4,5]
let arr = [ { id:1, name:'張三' }, { id:2, name:'李四' }, { id:3, name:'王二' }, { id:4, name:'麻子' }, ]; let id1 = arr.findIndex(item => { if (item.id == '3') { return true } }) arr.splice(id1, 1)
到此,關于“Vuejs如何從數組中刪除元素”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。