728x90
반응형
개요
이중 배열로 된 데이터를 반복문으로 돌면서 그 안에 있는 특정 배열에 대한
반복문을 통해 접근해야되는 상황
해결
- ng-repeat 사용
- 최초 추출한 데이터를 한번 더 ng-repeat
js 파일
// 데이터 형식
ct.lbServiceLists = {
"iaasLbInfo":{data},
"iaasLbPorts":[data],
"iaasLbPortMembers":[data]
}
html 파일
// 전체 값을 반복문으로 접근
<ng-repeat="data in contents.lbServiceLists">
// 값이 담긴 data를 한번 더 ng-repeat하여 iaasLbPorts 값을 추출
<ng-repeat="data1 in data.iaasLbPorts">
728x90
반응형
'프로그래밍 > AngularJs' 카테고리의 다른 글
[AngularJs] - angularJS 이중 배열 for문으로 접근하기(html) (0) | 2021.01.13 |
---|---|
[AngularJs] - 반복문으로 이중배열 데이터를 빈 배열에 추가 (0) | 2021.01.13 |
[AngularJs] - ng:cpws Can't copy! Making copies of Window or Scope instances is not supported (0) | 2021.01.13 |
[AngularJs] - toFixed (0) | 2021.01.11 |
[AngularJs] - $timeout 딜레이 후 함수 실행 (0) | 2021.01.11 |