I am trying to use get method of http service, but nothing is working.
import { Http, Response, Headers } from '@angular/http';
...
constructor (private http: Http) {}
...
return this.http.get(this.url)
.map((...a) => console.log(a))
.catch(this.handleError);
I cant even see nothing in network related to my url.
What can be wrong?