jq 删除数组 findIndex

findIndex() 方法返回传入一个测试条件(函数)符合条件的数组第一个元素位置。

findIndex() 方法为数组中的每个元素都调用一次函数执行:

当数组中的元素在测试条件时返回 true 时, findIndex() 返回符合条件的元素的索引位置,之后的值不会再调用执行函数。
如果没有符合条件的元素返回 -1

// 如果取消选中则删除数组中的数据
 let index = data.findIndex(item => item.id === data.id)
 if (index !== -1) {
   data.splice(index, 1)
 }

你可能感兴趣的:(javascript)