📌  相关文章
📜  如何在 React js 中删除特定数组索引处的元素 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:37.737000             🧑  作者: Mango

代码示例1
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});
  }