我正在使用ng-select
,并且希望搜索功能可以与StartsWith一起使用,而不要包含。
但是我无法启动(搜索)事件。我可以绑定到[searchFn]
,但我不完全知道这是否正确。
答案 0 :(得分:0)
fixed it with [searchFn]="onSearch()" in the html and in ts file:
public onSearch(word: string, item: { id: number, name: string }): boolean {
return item.name.toLocaleLowerCase().startsWith(word.toLocaleLowerCase())
}