반응형
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
반응형
'JS > Angularjs' 카테고리의 다른 글
AngularJs - textarea ng-model 설정하고나면 공백일때 (0) | 2016.06.23 |
---|---|
AngularJs - angular is not defined (0) | 2016.06.23 |
AngularJS - Directives (0) | 2016.06.23 |
AngularJs - ui router 페이지 이동 (0) | 2016.05.31 |
Cloud 9 - AngularJS가 작동안할때 (0) | 2016.05.30 |