본문 바로가기

프로그래밍/AngularJs

[AngularJs] - 반복문으로 이중배열 데이터를 빈 배열에 추가

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

(자바스크립트)-배열에-값-앞-또는-뒤에-추가하기-unshift()-push()

728x90
반응형