Skip to content

Instantly share code, notes, and snippets.

@davetron5000
Created July 31, 2016 21:50
Show Gist options
  • Save davetron5000/bba9925ed2cb66d469b870c47eebbea3 to your computer and use it in GitHub Desktop.
Save davetron5000/bba9925ed2cb66d469b870c47eebbea3 to your computer and use it in GitHub Desktop.
{
ngOnInit: function() {
var self = this;
this.sub = this.route.params.subscribe(function(params) {
var id = +params['id'];
self.heroService.getHero(id).then(function(hero) {
self.hero = hero
});
});
},
ngOnDestroy: function() {
this.sub.unsubscribe();
}
}
/*
I mean, I get why it works this way at a micro level, because it's all callbacks and
promises and more callbacks, but yikes does this seem fragile, fussy, and easy to get wrong/difficult to test.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment