zoukankan      html  css  js  c++  java
  • 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;
            }
    
  • 相关阅读:
    Pig与Hive的区别
    Hadoop MapReduceV2(Yarn) 框架简介
    Spark技术内幕:Client,Master和Worker 通信源码解析
    Spark技术内幕:Stage划分及提交源码分析
    无责任比较thrift vs protocol buffers
    理解hadoop的Map-Reduce数据流(data flow)
    hadoop-2.5安装与配置
    linux下查看本地程序占用的端口
    MFC安装与部署(程序打包)
    关系数据库设计中数据字典设计例子
  • 原文地址:https://www.cnblogs.com/RainbowInTheSky/p/4600827.html
Copyright © 2011-2022 走看看