My Component:
getDetailsByPhone(phone: any) {
        this.phoneSearchDetails = this.appService.manageHttp('get', 'search?number='+phone, '');
 }
My service:
manageHttp(method: any, url: any, body: any) {
    this.headers = this.config.setHeaders();
    var urlto = this.config.serverUrl +''+url;
    return  this.http.get(urlto,{ headers: this.headers }).map((response: Response) => {
            return response.json();
        });
}
With this code I am not able to see the response going in network.I am not sure about whats wrong and I didnt see any error in console.Can anyone please suggest help.Thanks.
 
    