Created
May 6, 2017 13:58
-
-
Save Kamilnaja/a65479128843b17724feed65478965c0 to your computer and use it in GitHub Desktop.
angular2 - choose item and open with more info
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
export class AppComponent implements OnInit { | |
herbs = []; | |
selectedHerb; | |
constructor(private _herbService: HerbsService){} | |
ngOnInit() { | |
this._herbService.getHerbs() | |
.subscribe(resHerbsData => this.herbs = resHerbsData); | |
} | |
onSelect(herb) { | |
this.selectedHerb = herb; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment