본문 바로가기
웹 프로그래밍

[jquery] getJSON json 파일 가져오기

by Minius 2020. 6. 2.
반응형

https://api.jquery.com/jQuery.getJSON/

 

jQuery.getJSON() | jQuery API Documentation

Description: Load JSON-encoded data from the server using a GET HTTP request. This is a shorthand Ajax function, which is equivalent to: 1 2 3 4 5 6 Data that is sent to the server is appended to the URL as a query string. If the value of the data paramete

api.jquery.com

카테고리 목록을 JSON 파일로 만들어서 프로젝트 상에서 불러서 사용하고 싶다.

각각의 파일로 만들면 한 번 수정해야 할 때 여러번 수정해야 하고, 따라서 실수할 수도 있다.

 

또한 다른 형식으로 표현하고 싶을 때 난감해진다.

 

그래서 JSON으로 만들었고,

불러오는 방법은 위의 JQUERY 사이트에 잘 정리되어 있다.

댓글