当ASP.NET MVC抛出异常时,它返回一个具有响应类型为text / html的500错误,当然这是无效的
JSON.
我想响应一个Ajax请求,期望Json有一个我可以接收并显示给用户的错误.
>是否可以返回http状态码为500的JSON?
>当问题是一个缺失的参数时,500个错误发生在Controller被调用之前 – 所以Controller解决方案可能不起作用.例如,在通常返回JsonResult的Action的调用中留下必需的参数,ASP.Net MVC会将其发送回客户端:
Server Error in ‘/’ Application. The parameters dictionary contains a
null entry for parameter ‘id’ of non-nullable type ‘System.Int32’ for
method ‘System.Web.Mvc.JsonResult EditUser(Int32,System.String,
System.String,System.String)’ in ‘bhh’. An optional
parameter must be a reference type,a nullable type,or be declared as
an optional parameter. Parameter name: parameters
我正在使用jQuery;有没有更好的办法呢?
解决方法
您可以使用自定义错误处理程序过滤器:
public class AjaxErrorHandler : FilterAttribute,IExceptionFilter { public void OnException(ExceptionContext filterContext) { if (filterContext.HttpContext.Request.IsAjaxRequest()) { filterContext.ExceptionHandled = true; filterContext.Result = new JsonResult { Data = new { errorMessage = "some error message" } }; } } }
然后装饰您通过AJAX调用的控制器/操作,甚至注册为全局过滤器.
$.getJSON('/foo',function(result) { if (result.errorMessage) { // something went wrong on the server } else { // process as normally } });