Filtre de recherche NG2
npm i ng2-search-filter --save
Joyous Jackal
npm i ng2-search-filter --save
import {Observable} from 'rxjs';
const foo = new Observable (subscriber => {
subscriber.next (42);
subscriber.next (100);
});
foo.subscriber(x => {
console.log(x);
});
<!--.html file- use '|async' pipe -->
<ul class="" scope="row" *ngFor="let aboutus of this.pageData |async " >
<li>{{aboutus.key}} {{aboutus.data.details}} </li>
</ul>