我有一个过滤器到数组。
{{1}}
}
所以我们可以制作一个类似的' var%'我们在SQL?
答案 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对象。