gpt4 book ai didi

jquery - Fineuploader错误处理

转载 作者:行者123 更新时间:2023-12-01 08:01:57 26 4
gpt4 key购买 nike

我在 MVC4 应用程序中使用 Fineuploader v3.9 UI 和 jquery 包装器。此时,我认为应该只允许由 validatieon sizeLimit 属性设置的 2.5MB 的文件。我当前的问题是,当我上传不支持的文件类型或文件太大时,我会收到此错误弹出窗口:

enter image description here

错误处理程序似乎没有触发,并且我的服务器端代码中没有断点被命中。话虽如此,当我选择一个小文件时,我可以在 Controller 方法代码中的断点处停止,并且一切正常(成功上传)。关于文件太大或不允许上传的情况有什么线索吗?

这是我认为的所有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 中,在调试控制台中我看到了这一点:

enter image description here

在 IE 中,会触发已提交和完成事件,但上传失败。在其他浏览器中,可以看到正确的最大大小超出错误,并且没有事件触发。

最佳答案

使用 DEBUG 时,我在 IE 中遇到的错误是“超出最大请求长度”。

这个问题可以通过将以下值添加到我的项目的 web.config 中来解决(至少对我来说):system.web 值以 kbs 为单位,因此为 1GB,作为示例

<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>

如果您在 IIS 中托管,请添加以下内容:maxAllowedContentLength 以字节为单位。

<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824"></requestLimits>
</requestFiltering>
</security>
</system.webServer>

现在,当我运行应用程序时,我的控制台输出不是错误,而只是适当的 FALSE 返回。

LOG: [FineUploader 3.9.0-3] Received 1 files or inputs. 
LOG: [FineUploader 3.9.0-3] Sending upload request for 0
LOG: [FineUploader 3.9.0-3] Received response for 0_874e4439-c5c0-4b95-970f-16eb1cf89405
LOG: [FineUploader 3.9.0-3] iframe loaded
LOG: [FineUploader 3.9.0-3] converting iframe's innerHTML to JSON
LOG: [FineUploader 3.9.0-3] innerHTML = <PRE>{"success":false}</PRE>

进一步更新这是我的 FineUploader 代码的一小段内容,显示了 JSON 返回中设置的自定义错误消息的“failedUploadTextDisplay”。

   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
},
failedUploadTextDisplay: {
mode: 'custom'
},

这是 FineUploader 调用的服务器方法的一部分。对于 IE9 及更早版本,客户端 fileSize 验证不会阻止代码返回到服务器。我添加了服务器端验证,在其中检查内容长度,并调用创建 JSON 返回的方法。

   [HttpPost]
public JsonResult UploadFile(HttpPostedFileWrapper qqfile, int surveyInstanceId, int surveyItemResultId, int itemId, int loopingIndex)
{
try
{
bool isValid = false;

// file is too big, throw error.
if (qqfile.ContentLength > (1024*1024*2.5))
{
return CreateJsonResult(false, "File size exceeded, max file is 2.5MB.");
}

这是创建 JSON 返回的方法。如果出现错误,我还会发回一个“错误”属性以及我想要的任何自定义文本。

 private JsonResult CreateJsonResult(bool isSuccess, string response = "")
{
var json = new JsonResult();
json.ContentType = "text/plain";

if (!isSuccess)
{
json.Data = new { success = isSuccess, error = response };
}
else
{
json.Data = new { success = isSuccess };
}

return json;
}

关于jquery - Fineuploader错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19252538/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com