jQuery json 데이터 가져오기

RESTful하게 개발할 때

json 데이터를 가져와서 웹 페이지를 만드는 경우가 많이 있다.

jQuery를 사용하면 간단하게 구현이 가능하다.

/example/result 이런 REST API로 HTTP GET해서 데이터를 가져오고 싶다면

다음과 같은 방식으로 구현을 하면 된다.

$.getJSON("/example/result", function(result){
        $.each(result, function(i, field){
            $("div").append(field + " ");
        });
});

No comments:

Post a Comment