我正在尝试使用array.splice从我的数组中删除一个对象,但是我在数组中的对象位置是-1,所以它没有被删除。我认为它是因为我每次都在创建一个新对象,所以这两个对象并不相同。这是我的代码。
let selectedCurrency = new Currency(null, null, null, symbol, currency_code, false, false, currency_description, null);
if (event.checked) {
this.companyCurrencies.push(selectedCurrency);
} else {
console.log("original array: ",this.companyCurrencies);
console.log("selected currency: ",selectedCurrency);
let index = this.companyCurrencies.indexOf(selectedCurrency);
if (index === -1) {
return;
}
this.companyCurrencies.splice(index, 1);
console.log("array after spliced: ",this.companyCurrencies);
}
我不知道如何解决这个问题,非常感谢任何帮助。