角度5 - >过滤"像%" (我们SQL)

时间:2018-03-17 10:48:31

标签: sql angular typescript filter

我有一个过滤器到数组。

{{1}}

}

所以我们可以制作一个类似的' var%'我们在SQL?

1 个答案:

答案 0 :(得分:0)

不,你不能。此运算符不存在于JavaScript中。但是你可以使用indexOf() - 方法,它以正确的方式使用了类似的效果。

filter(typ: string) {
  console.log("Filter");
  this.nagelplattenFiltered == null;

  this.nagelplattenFiltered = this.nagelplatten.filter((nagel: Nagelplatten) => 
  nagel.Bezeichnung1.indexOf(typ) > -1);

  this.nagelplatten = this.nagelplattenFiltered;
  console.log(JSON.stringify(this.nagelplattenFiltered));
  console.log("new: " + JSON.stringify(this.nagelplattenFiltered));
}

您的过滤器现在提供包含类型字符串的所有Nagel对象。