1

在https://github.com/blueimp/jQuery-File-Upload使用 blueimp 的 jQuery-File-Upload

我的应用程序在许多旧版浏览器上运行。文件上传有很长的兼容性限制列表。我想简单地检测文件上传器何时优雅地回落到使用 iframe 传输。我想在使用 fileupload 的 jQuery 中检测到这一点,类似于此示例:

var using_iframe_transport = false;

this_file_input.fileupload({
  dataType: 'json',
  url: "http://api.cloudinary.com/v1_1/my_account/image/upload",

  //as we send the file upload, record whether it is using iframe
  send: function (e, data) {
    if (e.iframe_fallback){ //is there a variable like this that exists in the plugin?
      using_iframe_transport = true;
    }
  }
});//end fileupload

if (using_iframe_transport){
  //do something
}

可以在 'progress'、'done' 或 'always' 回调中使用此代码:

...
  progress: function(e){ //or 'done' or 'always'
    if($('iframe').length){
      using_iframe_transport = true;
    }
  }
...

然而,这些回调并不总是如https://github.com/blueimp/jQuery-File-Upload/issues/461#issuecomment-9299307中报告的那样进行

我最大的担忧是支持 IE6 和 Android 2.3 默认浏览器。谢谢!

4

2 回答 2

3

看起来控制是否使用 iframe 的方法是 _initDataSettings ,它使用 _isXHRUpload 来确定是否使用它。由于这是一个私有方法,不能在外部调用,因此可以使用以下方法:

options = this_file_input.fileupload('option');
use_xhr = !options.forceIframeTransport &&
            ((!options.multipart && $.support.xhrFileUpload) ||
            $.support.xhrFormDataFileUpload);

如果 use_xhr 为 false,则使用 iframe 传输。

或者,如果您可以等待发送事件,您可以查看 data.dataType,如果它以“iframe”开头,则您正在使用 iframe 后备。

于 2013-05-30T13:22:23.677 回答
0
  1. 这是可能的。但是,它必须在 fileupload 插件的异步上下文中完成。如果您希望使用布尔变量using_iframe_transport,则必须在插件内的回调上下文中使用它。console.log在每个块中使用 a来查看哪个首先执行。

  2. 我会尝试使用add回调,因为它会在添加文件后立即调用。

    var using_iframe_transport = false;
    
    this_file_input.fileupload({
      dataType: 'json',
      url: "http://api.cloudinary.com/v1_1/my_account/image/upload",
    
      //as we send the file upload, record whether it is using iframe
      send: function (e, data) {
        if (e.iframe_fallback){ //is there a variable like this that exists in the plugin?
          /*
            This is being set within the asynchronous context of the plugin.
          */
          using_iframe_transport = true;
        }
      }
    });//end fileupload
    
    /*
      This is a synchronous process and is being evaluated prior 
      to the plugin callbacks being executed. This logic needs to be
      used within a callback function.
    */
    if (using_iframe_transport){
      //do something
    }
    
于 2013-05-30T13:43:38.307 回答