从状态数组中删除项目

从状态数组中删除项目,第1张

状态数组中删除项目

要从数组中删除元素,只需执行以下 *** 作:

array.splice(index, 1);

在您的情况下:

removePeople(e) {  var array = [...this.state.people]; // make a separate copy of the array  var index = array.indexOf(e.target.value)  if (index !== -1) {    array.splice(index, 1);    this.setState({people: array});  }},


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4892738.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存