vue.js刪除陣列元素的方法:1、取得陣列中需要刪除的元素的下標;2、從該下標開始計算,刪除長度為length的元素即可。
本文操作環境:windows10系統、vue.js 2.9、thinkpad t480電腦。
大家記不記得有一個方法arr.splice(arr.indexOf(ele),length),這個方法可以幫助我們刪除任何js數組,非常實用。
arr.splice(arr.indexOf(ele),length)方法表示先取得這個陣列中這個元素的下標,然後從這個下標開始計算,刪除長度為length的元素。
程式碼範例:
<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>
推薦學習:php訓練
以上是vue.js如何刪除陣列元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!