处理MVC JSON控制器操作中的异常

时间:2012-05-19 11:23:40

标签: asp.net-mvc

我正在寻找在返回JSON结果时处理控制器中的错误的最佳方法。

首先,如果我在控制器中得到未处理的异常并且我正在返回JSON,那么最佳做法是什么?我在想400或500错误?客户端检查状态并执行任何操作。

我正在使用FilterAttribute和IExceptionFilter,但我无法调用OnException函数。我已将该属性应用于控制器操作。

为什么可能没有打电话的任何想法?

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public sealed class AjaxHandleErrorAttribute : FilterAttribute, IExceptionFilter
{
    // This is never called !!!
    public void OnException(ExceptionContext filterContext)
    {
        if (filterContext == null)
        {
            throw new ArgumentNullException("filterContext");
        }

        if (filterContext.Exception != null 
            && !filterContext.ExceptionHandled)
        {
            ...
            filterContext.HttpContext.Response.StatusCode = 400;
            filterContext.HttpContext.Response.StatusDescription = "Error processing                 request";
            ...
        }
    }
}

public class MyController : Controller
{
    public MyController(IMyRepository repo)
    {
        ...
    }

    [AjaxHandleError]
    public ActionResult GetSomeJson(int anId)
    {
        throw new System.Exception();
    }
}

1 个答案:

答案 0 :(得分:0)

您应该使用该属性或在您需要添加的global.asax.cs中装饰控制器

public static void RegisterGlobalFilters(GlobalFilterCollection filters) {
    filters.Add(new AjaxHandleErrorAttribute());
}

将调用您的OnException方法。