4
<ng-select class="custom" [items]="ingredientsSearchList" bindLabel="name" bindValue="value" placeholder="Search ingredients/your products" (search)="onSearch($event)" loadingText="Searching">
            </ng-select>

是我的代码。但奇怪的是,除了搜索事件之外,所有输出事件(如模糊等)都会被触发。作为一种解决方法,我使用 (keyup) 事件来触发相同的事件。我是否有任何错误不触发搜索事件。

4

1 回答 1

1

请确保您使用的是 v2.8.0。此版本支持搜索事件。

于 2019-04-25T13:01:39.700 回答