폼 태그 전송 속도 느림
본문
폼 태그 전송 속도 느림
경고메시지
jquery-1.8.3.min.js:2 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience.
For more help, check https://xhr.spec.whatwg.org/
=================================================================
common.js
function get_write_token(bo_table)
{
var token = "";
$.ajax({
type: "POST",
url: g5_bbs_url+"/write_token.php",
data: { bo_table: bo_table },
cache: false,
async: false,
dataType: "json",
success: function(data) {
if(data.error) {
alert(data.error);
if(data.url)
document.location.href = data.url;
return false;
}
token = data.token;
}
});
return token;
}
==================================================================
데이터를 입력 수정할 때 새 창으로 띄워서 입력, 수정을 합니다.
그런데 입력 수정 폼을 전송 할 때 너무 느립니다.
혹시 토큰을 쓰지 않는 방법이나 이 해결할 수 있는 방법이 있으면
한 수 부탁드립니다.
읽어주셔서 감사합니다.
답변 2
저거 토큰 건들지 않아야할걸요 불법 접근 막으려고 쓰인건데~ 안그래도 보안에 취약한데 저거라도 없으면..
우선 그누보드를 튜닝하더라도 저런 토큰은 그대로 사용합니다.
토큰은 필요하구요.
아마 느린 다른 이유가 있을듯 합니다.
지금 올려주신 정보로는 파악이 힘들구요.