2017-09-08 9 views
0

は私のコードに見てください:角のJavaScriptでリストを印刷するには?

const DISH = { 
    name: 'Uthappizza', 
    image: '/assets/images/uthappizza.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.', 
    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" 
    } 
    ] 
}; 

この内のコメントを印刷する方法?あなたはこのようなDISH.commentsng-repeatを実行することができます

+2

フォーマットしてください。角度チュートリアルで扱えない具体的な問題は何ですか? –

+0

答えを調べる –

答えて

7

var myApp = angular.module('myApp', []); 
 

 
myApp.controller('MyCtrl', function($scope){ 
 
    $scope.DISH = { name: 'Uthappizza', image: '/assets/images/uthappizza.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.', 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" } ] }; 
 
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script> 
 
<div ng-app='myApp' ng-controller="MyCtrl"> 
 
    <div ng-repeat="comment in DISH.comments"> 
 
     <div> 
 
     <ul> 
 
      <li>author: {{comment.author}}</li>   
 
      <li>comment: {{comment.comment}}</li> 
 
      <li>date: {{comment.date}}</li> 
 
      <li>rating: {{comment.rating}}</li> 
 

 
     </ul> 
 
     </div> 
 
    </div> 
 
</div>

関連する問題