angularJS 썸네일형 리스트형 [AngularJs] - toFixed 개요 toFixed() 의 기능을 알아보고자 함. 해결 ( )안의 숫자만큼 소수점이 나옴 function financial(x) { return Number.parseFloat(x).toFixed(2); } console.log(financial(123.456)); // expected output: "123.46" Reference Number.prototype.toFixed() 더보기 [AngularJs] - ng-repeat으로 이중 배열 접근 개요 이중 배열로 된 데이터를 반복문으로 돌면서 그 안에 있는 특정 배열에 대한 반복문을 통해 접근해야되는 상황 해결 ng-repeat 사용 최초 추출한 데이터를 한번 더 ng-repeat js 파일 // 데이터 형식 ct.lbServiceLists = { "iaasLbInfo":{data}, "iaasLbPorts":[data], "iaasLbPortMembers":[data] } html 파일 // 전체 값을 반복문으로 접근 // 값이 담긴 data를 한번 더 ng-repeat하여 iaasLbPorts 값을 추출 더보기 [AngularJs] - $timeout 딜레이 후 함수 실행 개요 재시작 버튼을 눌렀을 때 일정 시간동안 block 상태를 만들고 이후 다시 실행될 수 있게끔 해야 한다. 해결 $timeout 함수 사용 ct.instanceRestart = function (guid, index) { ct.isRestart = true; var appPromise = applicationService.restartAppInstance(guid, index); $timeout(function() { ct.isRestart = false; }, 5000); html 에서는 ng-disabled 사용 재시작 화면 실행 후 5초 뒤 Reference How do I enable a button after a delay using AngularJS? 더보기 이전 1 2 다음