jSON 배열 참조하는 예제
페이지 정보
작성자 운영자쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 1,382회 작성일 22-03-27 09:57본문
var people = {
"programmers": [
{
"firstName": "Brett",
"lastName": "McLaughlin",
"email": "brett@newInstance.com"
},
{
"firstName": "Jason",
"lastName": "Hunter",
"email": "jason@servlets.com"
},
{
"firstName": "Elliotte",
"lastName": "Harold",
"email": "elharo@macfaq.com"
}
],
"authors": [
{
"firstName": "Isaac",
"lastName": "Asimov",
"genre": "science fiction"
},
{
"firstName": "Tad",
"lastName": "Williams",
"genre": "fantasy"
},
{
"firstName": "Frank",
"lastName": "Peretti",
"genre": "christian fiction"
}
],
"musicians": [
{
"firstName": "Eric",
"lastName": "Clapton",
"instrument": "guitar"
},
{
"firstName": "Sergei",
"lastName": "Rachmaninoff",
"instrument": "piano"
}
]
}
그렇다면 이런 식으로 호출해야 하는 것이다.
people.programmers[0].lastName;
people.authors[1].genre // 값은 "fantasy"
people.musicians[3].lastName // 값은 Undefined. 이것은 4번째 엔트리를 가리키며 거기엔 아무 것도 없다.
people.programmers.[2].firstName // 값은 "Elliotte"
댓글목록
등록된 댓글이 없습니다.