标签:数组 return lis 基础知识 splice spl 知识 pre find
1、怎么通过id查找索引
this.list.some((item, i) => {
if (item.id == id) {
//在数组的 some 方法中,
this.list.splice(i, 1)
return true;
}
})
var index = this.list.findIndex(item => {
if (item.id == id) {
return true
}
})
标签:数组 return lis 基础知识 splice spl 知识 pre find
原文地址:https://www.cnblogs.com/xpz-python/p/11063340.html