subscribe function in angular 2

1.7k Views Asked by At

I want to see the result returned from the service in the same subscribe method or in the ngOninit method(commented one) but neither of the place it showing the result even it is fetching the result from the service..

ngOnInit() {
    this.cityAreaService.getCities().subscribe(data => {
        this.cities = data;
        //console.log(this.cities);
    });
    //console.log(this.cities) 
}

Service

getCities() {
    return this.http.get(globalVar.serviceUrl + 'Cities').map((res: Response) => res.json());
}
1

There are 1 best solutions below

1
On BEST ANSWER

You could try to read response in other blocks of subscribe

this.cityAreaService.getCities().subscribe(
  response => {
    this.cities = response;
  },
  error => {
    // maybe error
  },
  () => {
    // anything else?
  }
);