ionic5search

import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';

/*
  Generated class for the DataProvider provider.

  See https://angular.io/guide/dependency-injection for more info on providers
  and Angular DI.
*/
@Injectable({
  providedIn: 'root'
})
export class DataService{
  items:{firstname:any,lastname:any}[]=[];
    constructor(public http: HttpClient) {
    console.log('Hello DataProvider Provider');
  }  
  getplist(list:any){  
    list.map(data=>{
      this.items.push(data);
    });
  }

  filterItems(searchTerm) {  
    console.log(searchTerm)
    return this.items.filter((item) => {
    return item.firstname?item.firstname.toLowerCase().indexOf(searchTerm.toLowerCase()) > -1:'';
   
  });
  }

}



Comments

Popular posts from this blog

Your app currently targets API level 27 and must target at least API level 28 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 28

ionic project creation

change root user in ubuntu