我有一个对象。
export class Branch {
id: string;
name: string;
location: string;
}
我使用初始化了分支对象
branchList: Branch[] = [];
然后我调用带有分支对象的函数。例如下面的例子,
filteringBranch(branch: Branch) {
this.branchList = this.branchList.filter( item =>
item.id !== branch.id &&
item.name !== branch.name
);
}
This.branchList
仅应包含ID分别为和名称与参数分支的ID 和名称不同的那些分支。但是在我的代码中,它包含其ID 或名称匹配的名称。现在有什么解决方案?预先感谢。