목차

반응형

posts라는 배열이 있고 그 배열안에

$scope.posts.push({

  title: 'hi',

  upvotes: 0,

  comments: [

    {author: 'Joe', body: 'Cool post!', upvotes: 0},

    {author: 'Bob', body: 'Great idea but everything is wrong!', upvotes: 0}

  ]

});

로 문자열 및 배열들을 집어넣었음

만약 html로 코멘트 배열만을 다시 나타내고싶으면


<div ng-repeat="test in posts[0].comments">{{test.author}}</div> 


결과

Joe
Bob


반응형