반응형
도메인이 다른 곳으로 ajax를 보내면
크롬에서는 console창에서 오류 메시지가 뜨고
IE에서는 아예 차단을 시켜 버린다.
jsonp로 처리하면 문제가 없다.
$.ajax({
url: 'http://127.0.0.1:8090/STAY_OUT?server=' + get_server(),
dataType : 'jsonp',
jsonp : 'callback',
timeout: 200,
async: false,
success: function(data) {
},
error: function() {
}
});
728x90
반응형
'웹 개발' 카테고리의 다른 글
[java] convert string to json object (0) | 2019.08.23 |
---|---|
convert object to jsonobject (오브젝트를 JSON 형식으로 변환) (0) | 2019.08.23 |
javascript - key를 기준으로 json object 정렬 (0) | 2019.08.23 |
javascript - Using jQuery to compare two arrays (0) | 2019.08.23 |
javascript array sort (0) | 2019.08.23 |