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的dropdownlist的代码。它基于基于文本的搜索 我在这里使用angular7和rxjs 6
答案 0 :(得分:2)
要使用filter
运算符,您需要在pipe()
内使用它:
import { filter } from 'rxjs/operators';
...
if (term) {
items = items.pipe(
filter(x => x.name.toLocaleLowerCase().indexOf(term.toLocaleLowerCase()) > -1),
);
}