How would I access this JSON data in AngularJS?

后端 未结 2 451
余生分开走
余生分开走 2021-01-29 01:26

I am trying to learn how to load JSON with Angular. I\'m a beginner with both topics, and am stuck on some really beginner topics.

I have a JSON file called food.json. I

2条回答
  •  旧巷少年郎
    2021-01-29 01:57

    ng-repeat in your case will iterate the array of objects in your data

    You just need to use :

  • Then on each pass of the loop, angular will reference the current object in array to produce output like {{ food.title }}

    I updated your demo here

    Edit Strongly suggest you go through the tutorial on angular docs site step by step

提交回复
热议问题