我使用以下代码在客户端显示来自服务器的异常消息:
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static void test(String text)
{
try
{
throw new Exception("Hello");
}
catch (Exception ex)
{
HttpContext.Current.Response.Write(ex.Message);
throw new Exception(ex.Message, ex.InnerException);
}
}
客户端:
$.ajax({
url: 'DownloadFile.aspx/test',
type: 'POST',
contentType: 'application/json; charset=utf-8',
// Pass the value as JSON string
// You might need to include json2.js for the JSON.stringify
//method: 'http://www.json.org/json2.js',
async: false,
dataType: "json",
data: '{ "text": "' + text'"}',
success: function(Result) {
},
error: function(xhr, textStatus, errorThrown) {
var err = eval("(" + xhr.responseText + ")");
alert(err.Message);
}
});
当我使用 localhost 时,我会在警报弹出窗口中看到“Hello”。当我在远程服务器上使用相同的代码时,出现一般系统错误。
如何获取向用户显示的异常消息文本?