AngularJs中的对象数组过滤问题

时间:2018-10-18 04:20:35

标签: angularjs typescript

我有一个对象。

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 名称匹配的名称。现在有什么解决方案?预先感谢。

0 个答案:

没有答案