删除数组中指定id的元素 function removeElementById(array, id) { const indexToRemove = array.findIndex(value => value.id === id); if (indexToRemove !== -1) { array.splice(indexToRemove, 1); } }