如何从 jQuery 异常中获取消息

发布于 2024-12-10 15:04:46 字数 432 浏览 1 评论 0原文

我有一些 MVC 代码:

throw new HttpException(403, "my error text", new Exception("Show me this message"));

在 javascript 中我有一个函数:

changeTextFormat = function (data) {

alert(data.responseText);
alert(data.status);
}

responseText 中有很多信息,但我想要访问的是“我的错误文本” 或 “显示此消息”

谁能告诉我如何从 responseText 中获取此内容。

I have some MVC code:

throw new HttpException(403, "my error text", new Exception("Show me this message"));

In javascript I have a function:

changeTextFormat = function (data) {

alert(data.responseText);
alert(data.status);
}

There is a lot of info in the responseText but what I'm wanting to get access to is "my error text" or "Show me this message".

Can anybody tell me how to get this out of the responseText.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仲春光 2024-12-17 15:04:46

如果您对错误处理方法使用以下参数,则可以访问该消息:

function (request, statusText, errorMsg) {
    // use errorMsg to get only the exception message
});

如果您使用 $.post(),您可以这样定义它:

$.post(url, data, function (data) { 
    ... success callback ... 
}).error(function (request, statusText, errorMessage) {...});

或者如果您通过 Ajax 调用您的操作方法通过定义 OnFailure 属性来帮助程序:

// javascript
var handleError = function (request, statusText, errorMsg) { ... };

// view
@Ajax.BeginForm(..., new AjaxOptions { OnFailure = "handleError" })

You can access the message if you use the following arguments for your error handling method:

function (request, statusText, errorMsg) {
    // use errorMsg to get only the exception message
});

If you are using $.post() you can define it this way:

$.post(url, data, function (data) { 
    ... success callback ... 
}).error(function (request, statusText, errorMessage) {...});

or if your calling your action method via the Ajax helper by defining the OnFailure property:

// javascript
var handleError = function (request, statusText, errorMsg) { ... };

// view
@Ajax.BeginForm(..., new AjaxOptions { OnFailure = "handleError" })
撑一把青伞 2024-12-17 15:04:46

我建议您使用 JSON 来显示异常。

{"error":"my error text","message":"Show me this message"}

然后解析它:

function getData(data){
data=JSON.parse(data);
var error=data.error;
var message=message.message;
}

I recommend you use the JSON to show the exception.

{"error":"my error text","message":"Show me this message"}

And then parse it:

function getData(data){
data=JSON.parse(data);
var error=data.error;
var message=message.message;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文