asp.net 重写OnException返回json或跳转新页面

2018-06-22 07:52:45来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

        protected override void OnException(ExceptionContext filterContext)
        {
            // 此处进行异常记录,可以记录到数据库或文本,也可以使用其他日志记录组件。
            // 通过filterContext.Exception来获取这个异常。
            filterContext.ExceptionHandled = true;//组织web.config配置customerror处理
            string requestType = filterContext.HttpContext.Request.RequestType.ToString();//获取请求类型
            UrlHelper url = new UrlHelper(filterContext.RequestContext);

            //判断是否为get请求,如果为get请求,跳转指定页面,如果不是返回json
            if (requestType.ToUpper() == "GET")
            {
                filterContext.Result = new RedirectResult(url.Action("error", "Error"));//跳转到新页面
            }
            else
            {
                filterContext.Result = new JsonResult() { Data = new { errorcode = 2, message = filterContext.Exception.Message }, JsonRequestBehavior = JsonRequestBehavior.AllowGet };//返回json数据
            }
            // 执行基类中的OnException
            //base.OnException(filterContext);
        }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:asp.net之cookie

下一篇:Asp.net MVC4高级编程学习笔记-视图学习第二课Razor视图引擎2017