如何解决在Android设备上上传视频的问题?

时间:2019-02-12 10:52:06

标签: jquery file upload jquery-file-upload blueimp

我正在使用fileupload.js插件,但是在Android设备上上传视频时遇到问题:上传速度非常慢(20Mo可能需要5分钟,无论我连接了哪个wifi网络……在iOS设备上花费几秒钟的时间。

我的代码很基本:

$('.fileupload').fileupload({

    url: 'fileupload.php',
    dataType: 'json',
    autoUpload: true,
    // Enable image resizing, except for Android and Opera,
    // which actually support image resizing, but fail to
    // send Blob objects via XHR requests:
    disableImageResize: /Android(?!.*Chrome)|Opera/
        .test(window.navigator.userAgent),
    maxChunkSize: 1000000

});

非常感谢您的帮助!

0 个答案:

没有答案