我的 Tags.ts 文件中有这些数据,但我不确定如何使用该名称进行过滤。我可以使用普通的字符串列表来完成此操作,但不确定如何对数组执行此操作。任何建议或帮助,如何做到这一点。
export const tags2: Array<Tag> = [{name: "Lam", superTag: true},
{name: "Eliz", superTag: false},
{name: "Cathy", superTag: true},
{name: "John", superTag: false},
{name: "James", superTag: false},
{name: "David", superTag: false}];
下面的代码适用于普通字符串列表,但不适用于数组
import { tags2 } from "./tags.data";
this._filteredTags = this.tags.filter((v: string) =>
v.toLowerCase().includes(filterValue.toLowerCase().trim())
);
}
}
弑天下
相关分类