我正在尝试克隆我的数组,然后使用slice()函数从中删除一个元素。但是,每当我单击要删除的元素时,它会删除数组中除了单击之外的所有内容。
这是我目前的代码:
deleteContact(contacts: Contacts){
if (contacts === null || contacts === undefined) {
return;
}
const pos = this.contacts.indexOf(contacts);
if (pos < 0) {
return;
}
this.contacts = this.contacts.splice(pos, 1);
this.contactsListClone = this.contacts.slice();
this.contactListChangedEvent.next(this.contactsListClone);
}
答案 0 :(得分:8)
splice
会返回已删除的元素,因此this.contacts
在此行后只有一个已删除的元素
this.contacts = this.contacts.splice(pos, 1);
简单地做到
this.contacts.splice(pos, 1);