1
enter code here


    getHospital(term: string = null): Observable<Hospitals[]> {
    let items = this.getHospitals1();
    if (term) {
      items = items.filter(x => x.name.toLocaleLowerCase().indexOf(term.toLocaleLowerCase()) > -1);

    }
    return items.pipe(delay(500));;
  }



getHospitals1() : Observable<Hospitals[]>{

     return this.http.get<Hospitals[]>('https://my-json-server.typicode.com/monsterbrain/FakeJsonServer/hospitals')

   }

当我添加过滤器时发生错误 它是使用 ng-select 的下拉列表的代码。它基于基于文本的搜索,这里 iam 使用 angular7 和 rxjs 6

4

1 回答 1

4

要使用filter运算符,您需要在内部使用它pipe()

import { filter } from 'rxjs/operators';

...

if (term) {
  items = items.pipe(
    filter(x => x.name.toLocaleLowerCase().indexOf(term.toLocaleLowerCase()) > -1),
  );
}
于 2018-11-22T09:50:37.323 回答