프로그래밍 언어/HTML,CSS,JS

JSON 구조를 반복하는 방법

Rateye 2021. 6. 6. 10:41
728x90
반응형
질문 : JSON 구조를 어떻게 반복합니까?

다음 JSON 구조가 있습니다.

[{ "id":"10", "class": "child-of-9" }, { "id": "11", "classd": "child-of-10" }] 

JavaScript를 사용하여 어떻게 반복합니까?

답변

jQuery 문서 에서 가져옴 :

var arr = [ {"id":"10", "class": "child-of-9"}, {"id":"11", "class": "child-of-10"}];
    
for (var i = 0; i < arr.length; i++){
  document.write("<br><br>array index: " + i);
  var obj = arr[i];
  for (var key in obj){
    var value = obj[key];
    document.write("<br> - " + key + ": " + value);
  }
}
출처 : https://stackoverflow.com/questions/1078118/how-do-i-iterate-over-a-json-structure
728x90
반응형