MVC的Filters(拦截过滤)的Error页面,支持Ajax报错

报错拦截过滤到error页面

    [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, Inherited = true, AllowMultiple = true)]
    public class ExceptionAttribute : FilterAttribute, IExceptionFilter
    {
        /*报错回到报错页Error*/
        /*
         *CreateTime:2013‎年‎3‎月‎18‎日
         */
        public void OnException(ExceptionContext filterContext)
        {
            //报错回到报错页
            string message = string.Format("消息类型:{0}<br>消息内容:{1}<br>引发异常的方法:{2}<br>引发异常源:{3}"
                , filterContext.Exception.GetType().Name
                , filterContext.Exception.Message
                 , filterContext.Exception.TargetSite
                 , filterContext.Exception.Source + filterContext.Exception.StackTrace
                 );
            filterContext.Controller.ViewData["ErrorMessage"] = message;//filterContext.Exception.Message + " 亲!您犯错了哦!";//得到报错的内容
            filterContext.Result = new ViewResult()//new一个url为Error视图
            {
                ViewName = "Error",/*在Shard文件夹下的Error.cshtml*/
                ViewData = filterContext.Controller.ViewData//view视图的属性中的viewdata被赋值
            };

            filterContext.ExceptionHandled = true;
        }

    }

 修改上面功能,增加ajax错误判断

/*报错回到报错页Error*/
        /*
         *CreateTime:2013‎年‎3‎月‎18‎日
         */
        public void OnException(ExceptionContext filterContext)
        {
            //报错回到报错页
            string message = string.Format("消息类型:{0}<br>消息内容:{1}<br>引发异常的方法:{2}<br>引发异常源:{3}"
                , filterContext.Exception.GetType().Name
                , filterContext.Exception.Message
                 , filterContext.Exception.TargetSite
                 , filterContext.Exception.Source + filterContext.Exception.StackTrace
                 );
            filterContext.Controller.ViewData["ErrorMessage"] = message;//filterContext.Exception.Message + " 亲!您犯错了哦!";//得到报错的内容

            if (filterContext.HttpContext.Request.IsAjaxRequest())
            {
                filterContext.Result = new ContentResult()
                {
                    Content = "Error",
                    ContentEncoding = Encoding.UTF8
                };
            }
            else {
                filterContext.Result = new ViewResult()//new一个url为Error视图
                {
                    ViewName = "Error",/*在Shard文件夹下*/
                    ViewData = filterContext.Controller.ViewData//view视图的属性中的viewdata被赋值
                };
            }

            filterContext.ExceptionHandled = true;
        }

 

转载于:https://www.cnblogs.com/RainbowInTheSky/p/4600827.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值