ajax를 사용하던 도중 getJSON() 과 ajax() 에 대한 차이가 궁금해졌다.
async 옵션, type 옵션을 활용할 수 없다! 😮😮
$.getJSON("${path}/my_serv/mytest.do", function (data) {
$.each(data, function (key, val) {
// 받아온 데이터 처리
...
});
});
$.ajax({
url: "${path}/my_serv/mytest.do",
data: param,
dataType: "json"
type: "POST",
async: false,
success: function (data) {
$.each(data, function (key, val) {
// 받아온 데이터 처리
...
});
}
});
https://withthisclue.tistory.com/entry/jQuery-json-%ED%8C%8C%EC%9D%BC-%EC%9D%BD%EA%B8%B0-ajax-getJSON-%EC%B0%A8%EC%9D%B4
https://recollectionis.tistory.com/167