Last active
June 12, 2016 19:08
-
-
Save robwormald/06139cb8c360dadfcf0bcf74b26d7bd0 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() { | |
this.example = this.route.params | |
.switchMap(params => this.exampleService.getExample(params.id)); | |
} |
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
<div>{{ (example | async).?name }}</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment