Last active
April 25, 2018 16:53
-
-
Save wholypantalones/eb0f7219cfe4354283acba66ae227152 to your computer and use it in GitHub Desktop.
users
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
this.http.get('https://jsonplaceholder.typicode.com/users') | |
.subscribe((users) => { | |
this.users = users; | |
}, (err) => { | |
console.log(err); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment