Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Kamilnaja/a65479128843b17724feed65478965c0 to your computer and use it in GitHub Desktop.
Save Kamilnaja/a65479128843b17724feed65478965c0 to your computer and use it in GitHub Desktop.
angular2 - choose item and open with more info
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