我试图通过JQuery Post和Webmethod抛出一个处理过的异常,这样我就可以收到一条错误信息回到alert函数。所以这只是一个测试脚本。
我有这个设置,并且正在捕获错误,现在我需要将服务器错误返回到警报功能!
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static string Test()
{
try
{
string value = null;
if (value.Length == 0) // <-- Causes exception
{
Console.WriteLine(value); // <-- Never reached
}
}
catch (Exception E)
{
StreamWriter sw = new StreamWriter(@"C:\inetpub\wwwroot\jQuery_AJAX_Database\error.txt", true);
sw.WriteLine(E.Message);
sw.Close();
sw.Dispose();
throw new Exception("error");
}
return "bla";
这是我的帖子脚本:
$("#btnTest").click(function () {
$.ajax({
type: 'POST',
url: "my_test2.aspx/Test",
contentType: "application/json; charset=utf-8",
success: function (data) {
alert('Success!')
},
error: function (xhr, status, error) {
var exception = JSON.parse(xhr.responseText);
alert(exception.Message);
// Here I need to return server error
}
});
});
谢谢P
答案 0 :(得分:1)
您需要一个http状态代码来执行此操作。
将您的代码修改为此
catch (Exception E)
{
StreamWriter sw = new StreamWriter(@"C:\inetpub\wwwroot\jQuery_AJAX_Database\error.txt", true);
sw.WriteLine(E.Message);
sw.Close();
sw.Dispose();
return new HttpStatusCodeResult(500, E.Message);
}
500
代表internal server error
。如果它更合适,请寻找另一个。
我认为400 - Bad Request
可能更适合您的情况。
答案 1 :(得分:0)
谢谢@ted你让我走上正轨。解决如下!
throw new HttpException(E.Message);