728x90
반응형
개요
이중 배열로 된 데이터를 반복문으로 돌면서 그 안에 있는 특정 배열을
빈 배열에 추가해야 하는 상황.
해결
- 빈 배열을 초기화
- for 문 작성
- push() 사용
// 작업에 사용할 배열에 대한 선언 및 초기화
ct.iaasLbPortList = [];
// 특정 변수에 배열을 초기화
ct.lbServiceList = data.content;
// for문 작성
for (var i=0; i < ct.lbServiceList.length; i++) {
// push 메서드 사용
ct.iaasLbPortList.push(ct.lbServiceList[i]);
}
Reference
728x90
반응형
'프로그래밍 > AngularJs' 카테고리의 다른 글
[AngularJs] - ng-mouseover (0) | 2021.01.13 |
---|---|
[AngularJs] - angularJS 이중 배열 for문으로 접근하기(html) (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] - ng-repeat으로 이중 배열 접근 (0) | 2021.01.11 |