Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created June 27, 2016 06:59
Show Gist options
  • Save tkssharma/07fc3b8f987524b5602c714999667282 to your computer and use it in GitHub Desktop.
Save tkssharma/07fc3b8f987524b5602c714999667282 to your computer and use it in GitHub Desktop.
ngOnInit() {
this.getFoods();
}
getFoods() {
this.http.get('/app/food.json')
.map((res:Response) => res.json())
.subscribe(
data => { this.foods = data},
err => console.error(err),
() => console.log('done')
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment