Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created February 3, 2019 13:22
Show Gist options
  • Save Kamilnaja/bce926f8f60d2a5ae2be97e1f454f69a to your computer and use it in GitHub Desktop.
Save Kamilnaja/bce926f8f60d2a5ae2be97e1f454f69a to your computer and use it in GitHub Desktop.
AngularHandleError
this.http
.get(url)
.subscribe(
result => {
this.dataStore.listItems = result;
this._listItems.next(result);
},
error => {
console.log('error');
},
() => {
console.log('all done');
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment