使用 jquery file upload,在android 浏览器上传大图片

浏览:1959 发布日期:2014/11/06 分类:求助交流
下面代码在pc浏览器上没问题。但是在android浏览器上提示后缀名不正确,图片都是相同的。$('#fileupload').fileupload({
    url: 'server',
    dataType: 'json',
    // 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 && navigator.userAgent),
    imageMaxWidth: 800,
    imageMaxHeight: 800,
    imageCrop: true // Force cropped images
})
上面是官方的例子,这句话没太明白
which actually support image resizing, but fail to send Blob objects via XHR requests

上传完成提示 文件后缀不正确,图片没有上传成功。求助,怎么使用jquery file upload 在android浏览器上先压缩图片,再上传
最佳答案
评论( 相关
后面还有条评论,点击查看>>