我是Yahoo util的新手。我在5秒内解雇了YUI Get asych get并从服务器获取响应。但是,似乎准备响应会消耗更多时间,大约25秒。有人可以解释如何准备响应文本吗?是否因为将响应数据保留在DOM中而浪费时间? 作为HTML?
function loadHandsets(e) {
if (!handsetCalculated) {
handsetCalculated = true;
YAHOO.util.Connect.asyncRequest('GET', '<%=jfnHelper.getServletURLForJS("GET_HANDSETS")%>&isAjax=true', {
success:function(o){
if(o.responseText !== undefined){
verifySessionTimeOut(o);
div.innerHTML = o.responseText;
defineHandsetTable();
}
},
failure: function(o){
if(o.responseText !== undefined){
div.innerHTML = "Call Failed!";
}
}