我正在使用 MVC2,并试图向用户显示友好的错误消息,方法如下:
public ActionResult Foo()
{
Response.StatusCode = 403;
return new ContentResult() { Content="frindly error"}
}
但是,我很难找到如何在 ajax OnFailure 回调中读取它:
function ajaxErrorHandler(context) {
// this fires an error, saying it's not a JSON object
alert(context.get_response().get_object());
}
我可以在萤火虫中看到响应是正确的。有任何想法吗?