Created
March 14, 2018 10:12
-
-
Save YonathanMeguira/915ac03a2aed6ade0f241d72719abe72 to your computer and use it in GitHub Desktop.
Http service angular 5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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