Skip to content

Instantly share code, notes, and snippets.

@YonathanMeguira
Created March 14, 2018 10:12
Show Gist options
  • Save YonathanMeguira/915ac03a2aed6ade0f241d72719abe72 to your computer and use it in GitHub Desktop.
Save YonathanMeguira/915ac03a2aed6ade0f241d72719abe72 to your computer and use it in GitHub Desktop.
Http service angular 5
goToServer = () => {
this.http.get('url');
}
getInformtionFromService = () => {
service.goToServer().subscribe(result => console.log(result), error => console.log(error.message))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment