gpt4 book ai didi

asp.net-mvc - ajax POST 长请求超时问题

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

所以我有一个 .NET MVC 项目,其中包含从 Ajax POST 调用的更新 Controller ,该项目可能需要很长时间才能运行,从而导致超时异常。

当我在本地计算机上调试它时,它运行良好,但是 - 当我将其发布到我的 azure 网站并从那里更新它时,请求从未成功完成,Chrome 的控制台报告:

POST http://mysiteaddress/Admin/UpdateLibrary/Update?Length=13 504 (Proxy Timeout ( This operation returned because the timeout period expired. )) 

在 Firefox 中尝试在远程桌面上进行相同的操作会导致控制台报告:

[07:42:13.856] POST http://mysiteaddress/Admin/UpdateLibrary/Update?Length=13 **[HTTP/1.1 502 Bad Gateway 182940ms]** 

我尝试在 web.config 文件中设置较长的超时

    <httpRuntime executionTimeout="2000"/>

在我的 ajax 调用体内

    $.ajax({
url: this.action,
type: 'POST',
data: $(this).serialize(),
success: function (data) {
document.write(data);
},
failure: function (XMLHttpRequest, textStatus, errorThrown) {
console.log(XMLHttpRequest);
console.log(textStatus);
console.log(errorThrown);
},
timeout: 2000000 //Milliseconds
});

但没有喜悦。

最佳答案

所以这并不是真正的修复,而是一种解决方法。我没有发出单个长请求,而是让我的 JavaScript 重复查询一个 ActionResult,该 ActionResult 返回一些 json 来决定我的长时间运行的进程是否已完成。完成后,我将浏览器重定向到结果屏幕。

    $.updateProgressbar = function () {
$.get('@Url.Action("GetStatus", "UpdateLibrary", new { countryId = countryId }, Request.Url.Scheme)', function (data) {
$('#progressbar').progressbar('value', data.progress)
if (data.currentItem != null) {
$('#currentWorkItem').text('@l12.View_Update_currentlyWorking' + data.currentItem);
}
if (data.progress == 100) {
window.location =
'@Url.Action("UpdateResults", "UpdateLibrary", new { countryId = countryId }, Request.Url.Scheme)';
} else {
setTimeout($.updateProgressbar, 5000);
}
});
};

$(function () {
$("#progressbar").progressbar({ value: 0 });
setTimeout($.updateProgressbar, 5000);
});

关于asp.net-mvc - ajax POST 长请求超时问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17446622/

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