我正在使用resumable.js上传文件。
我有以下设置:
var r = new Resumable({
target: uploaderWidgetProperties.data('upload-url'),
testChunks: false,
query: {},
maxChunkRetries: 2,
maxFileSize: 20 * 1024 * 1024, //20MB
maxFiles: uploaderWidgetProperties.data('upload-max-allowed-files'),
prioritizeFirstAndLastChunk: true,
simultaneousUploads: 4,
chunkSize: 1 * 1024 * 1024, //1MB
fileType: uploaderWidgetProperties.data('allowed-extensions'),
fileTypeErrorCallback: function (file, errorCount) {
$('.alert-box').text($('#_f-uploader-widget-error').html()).attr('style', 'color:red');
//hide after 5 seconds
setTimeout(function() {
$('.alert-box').text('').attr('style', 'color:none');
}, 5000);
}
});
好的。假设被允许的扩展名是.jpg文件。出于测试目的,我试图获取多个文件以查看其性能:
fileTypeErrorCallback
触发的错误消息)过去有没有人遇到过同样的问题,或者可以告诉我如何解决这个问题?