我需要重新修改一个网站。我目前有以下代码:
function combinedServerRequestSync(requestParams) {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open('POST', 'utility/php/RequestFile.php', false);
xmlHttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xmlHttp.send(requestParams);
if(xmlHttp.status === 200){
return xmlHttp.responseText;
} else{
return xmlHttp.statusText;
}
}
这个问题是,它每次运行时都会冻结网页。有没有一个解决方案,不会改进所有方法调用。