我在 MVC4 应用程序中使用带有 jquery 包装器的fineuploader v3.9 UI。在这一点上,我相信我应该只允许 2.5MB 的文件,由验证 sizeLimit 属性设置。我目前的问题是,当我上传不受支持的文件类型或文件太大时,我会弹出此错误消息:
错误处理程序似乎没有触发,并且我的服务器端代码中没有断点被命中。话虽如此,当我选择一个小文件时,我可以在我的控制器方法代码中的断点处停止并且一切正常(成功上传)。关于文件太大或不允许上传的任何线索?
从我的角度来看,这是我所有的 Fineuploader js 代码。我为“完成”和“提交”处理了事件,因此我可以在上传期间正确启用/禁用按钮,并且这些按钮很好。不过,不确定“错误”处理程序是怎么回事。我可以在我的 UI jQuery 方式中使用“qq”对象引用吗?它没有在其他任何地方使用,所以我想知道这是我的问题吗?想法?
// Uploader control setup
var fineuploader = $('#files-upload').fineUploader({
request:
{
endpoint: '@Url.Action("UploadFile", "Survey")',
customHeaders: { Accept: 'application/json' },
params: {
surveyInstanceId: (function () { return instance; }),
surveyItemResultId: (function () { return surveyItemResultId; }),
itemId: (function () { return itemId; }),
loopingIndex: (function () { return loopingCounter++; })
}
},
validation: {
acceptFiles: ['image/*','application/xls','application/pdf', 'text/csv', 'application/vnd.openxmlformats-officedocument.spreadsheetml.template','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','application/vnd.ms-excel'] ,
allowedExtensions: ['jpeg', 'jpg', 'gif', 'png', 'bmp', 'csv', 'xls', 'xlsx', 'pdf', 'xlt', 'xltx', 'txt'],
sizeLimit: 1024*1024*2.5, // 2.5MB
stopOnFirstInvalidFile: false
},
multiple: true,
text: {
//uploadButton: '<i class="icon-plus icon-white"></i>Select your upload file(s)'
uploadButton: 'Select your upload file(s)'
}
}).on('submitted', function(event, id, filename) {
alert('submitted ' + filename);
filesToUpload++;
$(':input[type=button], :input[type=submit], :input[type=reset]').attr('disabled', 'disabled');
}).on('complete', function(event, id, filename, responseJSON) {
alert('completed ' + filename);
uploadedFileCounter++;
if (filesToUpload == uploadedFileCounter)
{
$(':input[type=button], :input[type=submit], :input[type=reset]').removeAttr('disabled');
}
}).on('error', function(event,id, name, errorReason, xhr) {
alert(qq.format("Error on file number {} - {}. Reason: {}", id, name, errorReason));
});
});
这是我在上传过程中遇到的服务器方法的外壳:
[HttpPost]
public JsonResult UploadFile(HttpPostedFileWrapper qqfile, int surveyInstanceId, int surveyItemResultId, int itemId, int loopingIndex)
{
try
{
bool isValid = false;
// MORE UPLOAD CODE
if (isSaveValid && isResultItemEntryValid)
isValid = true;
return CreateJsonResult(isValid);
}
}
还有我返回 JSON 成功消息的方法
private JsonResult CreateJsonResult(bool isSuccess)
{
var json = new JsonResult();
json.ContentType = "text/plain";
json.Data = new { success = isSuccess };
return json;
}
这一切都在 FireFox v24 和 Chrome v30 中正常工作,但在 IE 9 中,在调试控制台中我看到了这个:
在 IE 中,提交和完成事件触发,但上传失败。在其他浏览器中,正确的最大大小超出错误是可见的,并且没有事件触发。