Created
July 31, 2016 21:50
-
-
Save davetron5000/bba9925ed2cb66d469b870c47eebbea3 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
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