gpt4 book ai didi

javascript - 在 JqueryUI 对话框中捕获和显示错误

转载 作者:行者123 更新时间:2023-11-30 20:30:19 25 4
gpt4 key购买 nike

我正在使用 JQuery-UI 对话框加载 MVC 分部 View

下面是一些示例代码:

$(function () {

function fSetupDialogs() {

$("#dialog-popup").dialog({
autoOpen: false,
resizable: true,
modal: true
});
}
});



$('body').on('click', '.popup-Edit',
function (e) {

url = $(this).data("url");

$("#dialog-popup")
.load(url)
.html("<img src='/content/images/Spinner.gif'>")
.dialog("option", "title", "Edit " + url.split("/").pop())
.dialog('open');

}
);

尽管偶尔会出现一些奇怪的滚动条之类的东西,但效果还是不错的。

问题是当 View 抛出错误时,我不知道如何检查它并在 jqueryui 面板中显示它

因此,如果 View 返回 500 或 401 错误,我想捕获它并在对话框中显示它。现在发生的是微调 GIF 永远坐在那里。如果我打开 F12 控制台,我可以在其中看到错误。

我已经尝试使用 .error 事件处理程序,它确实捕获它并弹出一个消息框。但我想在弹出窗口中显示:

        // This pops up an error alert
$("#dialog-popup")
.load(url)
.error(alert("error"))
.html("<img src='/content/images/Spinner.gif'>")
.dialog("option", "title", "Edit " + url.split("/").pop())
.dialog('open');

如何在对话框中显示内容?这没有效果 - 微调器留在那儿

        // This has no effect - I want to see the words "error" 
$("#dialog-popup")
.load(url)
.error($("#dialog-popup").html("error"))
.html("<img src='/content/images/Spinner.gif'>")
.dialog("option", "title", "Edit " + url.split("/").pop())
.dialog('open');

对于奖励积分,我如何使用javascript错误对象来识别401、500什么的? - 我还没有做到这一点。

最佳答案

我查看了自己的代码并找到了答案。

load 方法接受一个回调参数,可用于执行我需要的操作

我编写了一个名为 popupComplete 的函数,它会在加载完成时调用。

// This loads a partial MVC view into the popup
$("#dialog-popup")
.load(url,popupComplete)
.html("<div align='middle'><img src='/content/images/Spinner.gif'></div>")
.dialog("option", "title", "New")
.dialog("open");

// when the load is complete, this is called
// which optionally displays an error inside the popup
function popupComplete(response, status, xhr) {
if (status === "error") {
var msg =
"<BR><BR><BR><H3 style='text-align: center;'><span style='color: red;' class='glyphicon glyphicon-fire'></span> Confound it!<BR><BR>" +
xhr.status + " " + xhr.statusText +
"<BR><BR>" + (xhr.status == 401 ? "Try logging in again" : "") +
"</B></H3>";
$("#dialog-popup").html(msg);
}
}

关于javascript - 在 JqueryUI 对话框中捕获和显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50408394/

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