AngularJS Directives(지시문) - Repeating HTML Elements(반복되는 HTML 요소) 이 ng-repeat지시문은 HTML 요소를 반복합니다. {{ x }} 소스 Looping with ng-repeat: {{ x }} ng-repeat지시어는 실제로 HTML 요소를 복제합니다 콜렉션의 각 항목에 대해 한 번. ng-repeat오브젝트의 배열에 사용 지시문 : 예 {{ x.name + ', ' + x.country }} 소스 Looping with objects: {{ x.name + ', ' + x.country }}