我想通过使用“ng-repeat”和“ng-controller”显示所有评论元素,如列表,但我不知道如何在菜中显示评论元素!像这样:
5 星
想象一下所有的食物,生活在混乱中!
约翰柠檬,十月。17,2012
4星
送人上天堂,好想让婆婆吃!
Paul McVites,2014 年 9 月 6 日
。. .
var app = angular.module('confusionApp',[]);
app.controller('dishDetailController', function() {
this.filtText= '';
var dish=[
{
name:'Uthapizza',
image: 'images/uthapizza.png',
category: 'mains',
lable:'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.',
comments: [
{
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"
},
{
rating:3,
comment:"Eat it, just eat it!",
author:"Michael Jaikishan",
date:"2015-02-13T17:57:28.556094Z"
},
{
rating:4,
comment:"Ultimate, Reaching for the stars!",
author:"Ringo Starry",
date:"2013-12-02T17:57:28.556094Z"
},
{
rating:2,
comment:"It's your birthday, we're gonna party!",
author:"25 Cent",
date:"2011-12-02T17:57:28.556094Z"
}
]
}];
this.dish = dish;
});
</script>