其他分享
首页 > 其他分享> > el-table使用checkbox时,获取选中数据的id?

el-table使用checkbox时,获取选中数据的id?

作者:互联网

使用checkbox选中时有一个触发事件,那么触发事件可以调用下面的方法:

//多选框选中事件
handleSelectionChange(val) {
       this.multipleSelection = []
       //val是选中的数据的数组
       val.forEach(item => {
           const id = item.id
           //判断数组中是否包含某个值
           if (this.multipleSelection.indexOf(id) == -1) {
               this.multipleSelection.push(id)
           }
       })
}               

   

标签:el,checkbox,val,multipleSelection,item,选中,table,id
来源: https://www.cnblogs.com/zys2019/p/14977813.html