当我们发送一个 XMLHttpRequest 时,我们总是伴随着数百个额外的字节。在正常使用中它是好的。但是在构建需要速度的应用程序时,这不利于可靠性。
function update(){
var xhr = getXMLHttp(); // Normal catch handler for XHR
xhr.open("POST", "update.php?r=" + "&chatvslog=" + user, true);
xhr.send();
window.setTimeout("update();",300);
}
发送请求确实需要从 170 到 360 毫秒。问题是我需要更快地完成这项工作。
有没有办法改进我的 XMLHttpRequest 或以另一种方式做到这一点?