如何在对引发异常的 C# webmethod 的 ajax 调用上指定消息?
Posted
技术标签:
【中文标题】如何在对引发异常的 C# webmethod 的 ajax 调用上指定消息?【英文标题】:How to specify message on ajax call to C# webmethod that throws an exception? 【发布时间】:2017-02-01 12:19:12 【问题描述】:我有一个 C# Web 方法,当下面显示的调用超时(>30 秒)时,它有时会引发异常。这很好,我期望这种行为,但问题是,当 ajax 调用命中 .fail 回调时,错误消息指出“内部服务器错误”。我希望能够捕获异常并报告数据库超时。我该怎么做?
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static string GetSPResults(string reportId, string sproc, Dictionary<string, string> parameters, string[] ensureArrays, string[] encryptArrays, string[] dateFields)
...
XElement result = avdata.ExecuteSPXmlXElement(sproc, parameters, null);
...
$.ajax(
type: "POST",
url: "/Patrol/Report.aspx/GetSPResults",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: JSON.stringify(postData)
).done(function (result)
...
).fail(function (jqXHR, textStatus, err)
alert("An error has occurred: " + err); //rerpots "Internal server error" no matter what problem occurs server-side
);
【问题讨论】:
你不能这样做。在这种情况下,内部服务器错误是来自服务器的正确响应。您可以做的是在服务器端捕获异常并返回带有错误消息的响应,稍后在您的 .done 函数中,您必须指出它是正确的响应还是错误 您检查过 textStatus 字符串的内容吗?看起来它可以返回一个"timeout"
值(以及"error"
、"abort"
和"parsererror"
)
@pinhead textStatus 的值为error
,这是来自服务器-> db 的数据库连接超时,而不是来自客户端-> 服务器的超时,我认为这会导致timeout
返回价值
我明白了,这是有道理的。 This answer 建议您可以解析 jqXHR
对象以获取异常消息。
【参考方案1】:
我用这个
$.ajax(
type: "POST",
url: "/Patrol/Report.aspx/GetSPResults",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: JSON.stringify(postData)
error: function (jqXHR, textStatus, errorThrown)
mensaje = false;
if (jqXHR.status === 0)
alert("Not connect: Verify Network.");
else if (jqXHR.status == 404)
alert("Requested page not found [404]");
else if (jqXHR.status == 500)
alert("Internal Server Error [500].");
else if (textStatus === 'parsererror')
alert("Requested JSON parse failed.");
else if (textStatus === 'timeout')
alert("Time out error.");
else if (textStatus === 'abort')
alert("Ajax request aborted.");
else
toastr.error("Uncaught Error:", "Mensaje Servidor");
);
【讨论】:
以上是关于如何在对引发异常的 C# webmethod 的 ajax 调用上指定消息?的主要内容,如果未能解决你的问题,请参考以下文章
如何在OnExceptionAsync c#中获取引发异常的方法名称[重复]
在对 WebMethod 的 jQuery AJAX 调用中获取空响应,但 Web 方法返回 JSON
C#使用NLOG System.TypeInitializationException,类型初始值设定项引发异常