0
udestandに私を助けてください。 ng-repeatのキー値の配列を取得することはできません(blockquote)。コンソールには何も表示されず、エラーもありません。 これは私の変更されたコードです:Angularjs ng-repeat、キーで値の配列
<div class="row row-content" ng-controller = "DishDetailController">
<blockquote ng-repeat="comment in dish">
<p>{{comment.rating}} Stars</p>
<p>{{comment.comment}}</p>
<footer>John Lemon</footer>
</blockquote>
</div>
スクリプト:
angular.module('confusionApp', [])
.controller('DishDetailController', ['$scope', function($scope) {
var dish=[{
name:'Uthapizza',
image: 'images/uthapizza.png',
category: 'mains',
label:'Hot',
price:'4.99',
description:'A unique combination of Indian Uthappam (pancake) and Italian pizza, topped with Cerignola olives, ripe vine cherry tomatoes, Vidalia onion, Guntur chillies and Buffalo Paneer.',
comment: [
{
rating:5,
comment:"Imagine all the eatables, living in conFusion!",
author:"John Lemon",
date:"2012-10-16T17:57:28.556094Z"
},
{
rating:4,
comment:"Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
author:"Paul McVites",
date:"2014-09-05T17:57:28.556094Z"
},
]
}
];
$scope.dish = dish;
}]);
@swenあなたは残念ながら、それは動作しません答え – Sajeetharan
を確認しました。質問コードを更新しました –
コンソールでエラーが表示されていますか? – Sajeetharan