18

当 load() 没有在 5 秒内返回时,我想取消 .load() 操作。如果是这样,我会显示一条错误消息,例如“抱歉,没有加载图片”。

我所拥有的是...

...超时处理:

jQuery.fn.idle = function(time, postFunction){  
    var i = $(this);  
    i.queue(function(){  
        setTimeout(function(){  
            i.dequeue();
            postFunction();  
        }, time);  
    });
    return $(this); 
};

...初始化错误消息超时:

var hasImage = false;

$('#errorMessage')
    .idle(5000, function() {

        if(!hasImage) {
            // 1. cancel .load()            
            // 2. show error message
        }
    });

...图像加载:

$('#myImage')
     .attr('src', '/url/anypath/image.png')
     .load(function(){
         hasImage = true;
         // do something...
      });

我唯一想不通的是如何取消正在运行的 load() (如果可能的话)。

编辑:

另一种方式:如何防止 .load() 方法在返回时调用它的回调函数?

4

7 回答 7

11

如果你想要这样的任何自定义处理,你根本不能使用 jQuery.load() 函数。你必须升级到 jQuery.ajax(),无论如何我都推荐它,因为你可以用它做更多的事情,特别是如果你需要任何类型的错误处理,这将是必要的。

使用 jQuery.ajax 的 beforeSend 选项并捕获 xhr。然后您可以创建回调,它可以在超时后取消 xhr,并根据需要创建回调。

此代码未经测试,但应该可以帮助您入门。

var enableCallbacks = true;
var timeout = null;
jQuery.ajax({
  ....
  beforeSend: function(xhr) {
    timeout = setTimeout(function() {
      xhr.abort();
      enableCallbacks = false;
      // Handle the timeout
      ...
    }, 5000);
  },
  error: function(xhr, textStatus, errorThrown) {
    clearTimeout(timeout);
    if (!enableCallbacks) return;
    // Handle other (non-timeout) errors
  },
  success: function(data, textStatus) {
    clearTimeout(timeout);
    if (!enableCallbacks) return;
    // Handle the result
    ...
  }
});
于 2010-05-12T16:53:26.920 回答
3

您改写的次要问题:
如何取消使用 .load() 方法创建的待处理回调函数?

您可以使用此“核”选项取消所有 jquery 回调:

$('#myImage').unbind('load');
于 2012-01-27T00:31:36.277 回答
2

我认为最简单的方法是$.ajax直接使用。这样你就可以开始一个超时,并从超时设置一个标志,ajax 调用上的处理程序可以检查。超时也可以显示消息或其他内容。

于 2010-05-11T18:01:57.573 回答
2

如果您在加载 JQuery 之后加载此代码,您将能够使用超时参数调用 .load()。

jQuery.fn.load = function( url, params, callback, timeout ) {
    if ( typeof url !== "string" ) {
        return _load.call( this, url );

    // Don't do a request if no elements are being requested
    } else if ( !this.length ) {
        return this;
    }

    var off = url.indexOf(" ");
    if ( off >= 0 ) {
        var selector = url.slice(off, url.length);
        url = url.slice(0, off);
    }

    // Default to a GET request
    var type = "GET";

    // If the second parameter was provided
    if ( params ) {
        // If it's a function
        if ( jQuery.isFunction( params ) ) {
            if( callback && typeof callback === "number"){
                timeout = callback;
                callback = params;
                params = null;
            }else{
                // We assume that it's the callback
                callback = params;
                params = null;
                timeout = 0;
            }
        // Otherwise, build a param string
        } else if( typeof params === "number"){
            timeout = params;
            callback = null;
            params = null;
        }else if ( typeof params === "object" ) {
            params = jQuery.param( params, jQuery.ajaxSettings.traditional );
            type = "POST";
            if( callback && typeof callback === "number"){
                timeout = callback;
                callback = null;
            }else if(! timeout){
                timeout = 0;
            }
        }
    }

    var self = this;

    // Request the remote document
    jQuery.ajax({
        url: url,
        type: type,
        dataType: "html",
        data: params,
        timeout: timeout,
        complete: function( res, status ) {
            // If successful, inject the HTML into all the matched elements
            if ( status === "success" || status === "notmodified" ) {
                // See if a selector was specified
                self.html( selector ?
                    // Create a dummy div to hold the results
                    jQuery("<div />")
                        // inject the contents of the document in, removing the scripts
                        // to avoid any 'Permission Denied' errors in IE
                        .append(res.responseText.replace(rscript, ""))

                        // Locate the specified elements
                        .find(selector) :

                    // If not, just inject the full result
                    res.responseText );
            }

            if ( callback ) {
                self.each( callback, [res.responseText, status, res] );
            }
        }
    });

    return this;
};

不确定您是否有兴趣覆盖任何“标准”JQuery 函数,但这将允许您按照您描述的方式使用 .load() 。

于 2010-05-12T19:40:57.467 回答
1

我认为您无法从这里到达那里 - 正如@Pointy 提到的,您需要访问 XmlHttpRequest 对象,以便您可以访问其.abort()上的方法。为此,您需要将.ajax()对象返回给您的 jQuery API。

除非能够中止请求,要考虑的另一种方法是将超时的知识添加到回调函数中。您可以通过两种方式做到这一点 - 首先:

var hasImage = false;

$('#errorMessage')
    .idle(5000, function() {

        if(!hasImage) {
            // 1. cancel .load()            
            // 2. show error message
            // 3. Add an aborted flag onto the element(s)
            $('#myImage').data("aborted", true);
        }
    });

还有你的回调:

$('#myImage')
     .attr('src', '/url/anypath/image.png')
     .load(function(){
         if($(this).data("aborted")){
             $(this).removeData("aborted");
             return;
         }
         hasImage = true;
         // do something...
      });

或者你可以绕过这个特定功能的空闲:

$('#myImage')
     .attr('src', '/url/anypath/image.png')
     .data("start", (new Date()).getTime())
     .load(function(){
         var start = $(this).data("start");
         $(this).removeData("start");
         if(((new Date()).getTime() - start) > 5000)
             return;

         hasImage = true;
         // do something...
      });

这两种方法都不是理想的,但我认为您不能直接取消从 jQuery 1.4 开始的加载 - 不过,这可能是对 jQuery 团队的一个很好的功能请求。

于 2010-05-12T16:08:47.090 回答
0

您可以在加载图像以及测试加载错误之前简单地设置超时。

function LoadImage(yourImage) {

    var imageTimer = setTimeout(function () {
        //image could not be loaded:
        alert('image load timed out');
    }, 10000); //10 seconds

    $(yourImage).load(function (response, status, xhr) {
        if (imageTimer) {

            if (status == 'error') {
                //image could not be loaded:
                alert('failed to load image');

            } else {
                //image was loaded:
                clearTimeout(imageTimer);
                //display your image...
            }

        }
    });

}
于 2013-07-22T07:38:02.980 回答
0

$('#myImage').load(function(){...})不是加载图像的函数调用,它实际上是将回调绑定到onload 事件的简写。

因此,按照其他答案中的建议向方法timeout添加参数将无效。.load()

它认为您的两个选择是:

  1. 继续您正在遵循的路径,并 $('#myImage').attr('src', '');在超时后执行诸如取消图像加载之类的操作,或者

  2. 找到一些方法来$.ajax( { ... , timeout: 5000, ...} );加载图像,而不是让浏览器通过 <img src="...">属性自动加载。

于 2010-09-24T05:28:44.153 回答