我正在用 Java 开发我的网站。我正在使用 jquery、ajax,如下所示:
$.ajax({
dataType: "json",
url : 'getWords.htm',
type: 'post',
async : false,
data : {dataJSON : JSON.stringify(dataJSON)},
success : function(words) {
.....
}
});
它运行良好,但在 Chrome 中它的运行速度比 Firefox、IE 和 Opera 慢。在 Chrome 中我有一点延迟(大约 0.8 秒)。当我每次单击有四个 ajax 查询时,它真的很慢。我该如何解决?
在萤火虫中我看到:发送 5 毫秒,等待 512 毫秒,接收 3 毫秒,但在其他浏览器中都很快。
谢谢。