Ajax JSON POST
Client
$.ajax({
url: ".../api/test",
type: "post",
accept: "application/json",
contentType: "application/json; charset=utf-8",
data: JSON.stringify({'list': savedData}),
dataType: "json",
success: function(data) {
// success handle
},
error: function(jqXHR,textStatus,errorThrown) {
// fail handle
}
});
Server
@RequestMapping(value = "/api/test", method = RequestMethod.POST, headers = {"Accept=application/json"})
@ResponseBody
public void test(@RequestBody JSONObject jsonObj) throws Exception {
// code
}
'Programming > jQuery' 카테고리의 다른 글
[jQuery] selectbox 선택값 변경시 값 구하기 (0) | 2014.08.14 |
---|---|
[jQuery] Ajax 전송 (0) | 2014.08.14 |
[jQuery] input box 기본문자처리 (0) | 2014.08.14 |
[jQuery] checkbox 관련 (0) | 2014.03.19 |
[jQuery] select box 관련 (0) | 2014.03.19 |