批量操作取值调接口
Posted 李美玲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量操作取值调接口相关的知识,希望对你有一定的参考价值。
批量操作取值调接口
selectionChange(val) {
var arr = [];//数组置空
if(val.length) {/////////////切记,判断取值数组的的长度
for(var i = 0; i < val.length; i++) {
arr.push(val[i].id)//追加你需要的id
this.selectedId = arr
}
this.selectShow = true
} else {
this.selectedId = []//切记没值的时候还要置空数组
this.selectShow = false
}
this.$emit(‘selectionChange‘, this.selectedId)//子组件更新父组件,并把值带过去
},
以上是关于批量操作取值调接口的主要内容,如果未能解决你的问题,请参考以下文章