如何使用Yahoo util asynch创建responseText以获取Ajax调用

时间:2019-01-10 07:08:39

标签: javascript yui

我是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!";
            }
        } 

0 个答案:

没有答案