博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Asp.Net MVC4中的全局过滤器,
阅读量:5098 次
发布时间:2019-06-13

本文共 1451 字,大约阅读时间需要 4 分钟。

可以对整个项目进行全局监控。

              新建一个MVC4项目,可以在global.asax文件中看到如下代码:  FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);

              表示注册全局过滤器. 

               GlobalFilters是全局过滤器的集合,可以通过add方法添加过滤器,默认情况下,HandleErrorAttribute过滤器被添加到集合中。

                接下来我们创建一个自定义过滤器,然后添加到全局过滤器集合中。

               1.创建自定义过滤器

                  创建自定义过滤器要继承ActionFilterAttribute类。我们创建一个名称为CustomerFilterAttribute的过滤器,在action里面记录下时间。

                    代码如下:

 

                  

[csharp] 
 
 
  1. public class CustomerFilterAttribute : ActionFilterAttribute  
  2.   {  
  3.   
  4.       public override void OnActionExecuting(ActionExecutingContext filterContext)  
  5.       {  
  6.           base.OnActionExecuting(filterContext);  
  7.           filterContext.HttpContext.Response.Write("开始时间:"+DateTime.Now.ToString()+"<br/>");  
  8.       }  
  9.   
  10.       public override void OnActionExecuted(ActionExecutedContext filterContext)  
  11.       {  
  12.           base.OnActionExecuted(filterContext);  
  13.           var controllerName = filterContext.RouteData.Values["controller"].ToString();  
  14.           var actionName = filterContext.RouteData.Values["action"].ToString();  
  15.   
  16.           filterContext.HttpContext.Response.Write("结束时间:" + DateTime.Now.ToString() + "<br/>");  
  17.           filterContext.HttpContext.Response.Write("controller:" +controllerName+",action:"+actionName);  
  18.       }  
  19.   }  

               2.注册全局过滤器

                     过滤器创建完成后,我们把这个过滤器添加到全局过滤器中,使用  filters.Add(new CustomerFilterAttribute());方法,

                       代码如下:

                     

[csharp] 
 
 
  1. public class FilterConfig  
  2.    {  
  3.        public static void RegisterGlobalFilters(GlobalFilterCollection filters)  
  4.        {  
  5.            filters.Add(new HandleErrorAttribute());  
  6.            filters.Add(new CustomerFilterAttribute());  
  7.        }  
  8.    }  

          接下来我们运行项目中的每一个页面,都会看到页面中输出时间和controller名称,效果图如下:

              

转载于:https://www.cnblogs.com/wearetian/p/4238839.html

你可能感兴趣的文章
fdisk (二) 详解(转)
查看>>
hdu 2768 Cat vs. Dog 最大独立集 巧妙的建图
查看>>
简单将集合的内容转为字符串
查看>>
Python pandas 0.19.1 Intro to Data Structures 数据结构介绍 文档翻译
查看>>
《寿康宝鉴》
查看>>
Mongodb
查看>>
软工个人总结
查看>>
如何将u盘、移动硬盘转化为活动分区--绝招
查看>>
MYSQL 5.7 修改密码、登录问题
查看>>
linux 同步时间 调试core内核
查看>>
PAT Basic 1085
查看>>
springMVC传递一组对象的接受方式
查看>>
收藏一个虚函数表以及虚表指针介绍的文章
查看>>
POJ---2492 A Bug's Life[并查集]
查看>>
[BZOJ1195] [HNOI2006]最短母串
查看>>
final阶段140字评论
查看>>
zookeeper集群搭建
查看>>
Jenkins-在windows上配置自动化部署(Jenkins+Gitblit)
查看>>
ng-if可见
查看>>
[AGC003]E - Sequential operations on Sequence
查看>>