$scope に製品のリストがあります。私の製品は次のようになります。
function myController($scope) {
$scope.products = [
{ id:1, name:"hamburger", image:"/img/hamburger.png" },
{ id:2, name:"fries", image:"/img/fries.png" },
{ id:3, name:"hot dog", image:"/img/hotDog.png" }
...
];
}
food.html というファイルがあります。そのファイルは次のようになります。
<div>
<div>{{name}}</div>
<div><img ng-src="{{image}}" /></div>
</div>
リピーター経由で index.html の food.html でレンダリングされたすべての製品のリストを表示しようとしています。それ、どうやったら出来るの?現在、私は次のようなものを持っています:
<div ng-controller="myController">
<div>Total Food Items: {{products.length}}</div>
<div ng-repeat="product in products">
</div>
</div>
food.html を使用して各製品をレンダリングする方法に行き詰まっています。どうすればいいですか?ありがとうございました!