角度6 ng-select startsWith代替Contains

时间:2019-01-07 12:42:57

标签: angular select angular6

我正在使用ng-select,并且希望搜索功能可以与StartsWith一起使用,而不要包含。

但是我无法启动(搜索)事件。我可以绑定到[searchFn],但我不完全知道这是否正确。

1 个答案:

答案 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()) }