JavaScript에서 JSON 구조 반복
JSON 데이터로 작업할 때 데이터를 추출하거나 조작하기 위해 구조를 반복해야 하는 경우가 많습니다. . 제공된 JSON 구조에서:
[ { "id": "10", "class": "child-of-9" }, { "id": "11", "class": "child-of-10" } ]
간단한 JavaScript for 루프를 사용하여 배열의 각 개체를 반복할 수 있습니다.
for (var i = 0; i < arr.length; i++) { // First, access the current object var obj = arr[i]; // Now, we can iterate over the object's properties for (var key in obj) { // Obtain the value for the current property var value = obj[key]; // Output the key and value document.write(`<br><br> - ${key}: ${value}`); } }
이 코드는 배열, 해당 ID 및 클래스 속성에 액세스합니다. 각 속성과 해당 값을 나열하는 출력이 브라우저에 표시됩니다.
위 내용은 JavaScript에서 JSON 개체 배열을 통해 어떻게 반복합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!