jquery – 如何在ASP.NET MVC中以JSON格式返回500错误?

前端之家收集整理的这篇文章主要介绍了jquery – 如何在ASP.NET MVC中以JSON格式返回500错误?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当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调用的控制器/操作,甚至注册为全局过滤器.

后执行AJAX请求时,您可以测试error属性的存在:

$.getJSON('/foo',function(result) {
    if (result.errorMessage) {
        // something went wrong on the server
    } else {
        // process as normally
    }
});
原文链接:https://www.f2er.com/jquery/176673.html

猜你在找的jQuery相关文章