【发布时间】:2018-03-17 20:01:05
【问题描述】:
我有一个数组的过滤器。
filter(typ: string) {
console.log("Filter");
this.nagelplattenFiltered == null;
this.nagelplattenFiltered = this.nagelplatten.filter((nagel: Nagelplatten) => nagel.Bezeichnung1 === typ);
this.nagelplatten = this.nagelplattenFiltered;
console.log(JSON.stringify(this.nagelplattenFiltered));
console.log("new: " + JSON.stringify(this.nagelplattenFiltered));
}
那么我们可以在 SQL 中创建一个 Like 'var%' 我们吗?
【问题讨论】:
标签: sql angular typescript filter