zoukankan      html  css  js  c++  java
  • asp.net mvc filter

    Using Filters to Attach Reusable Behaviors

    Introducing the Four Basic Types of Filters

     

    Notice that ActionFilterAttribute is the default implementation for both IActionFilter
    and IResultFilter—it implements both of those interfaces. It’s meant to be totally general
    purpose, so it doesn’t provide any implementation (in fact, it’s marked abstract, so you can
    only use it by deriving a subclass from it). However, the other default implementations
    (AuthorizeAttribute and HandleErrorAttribute) are concrete, contain useful logic, and can
    be used without deriving a subclass.
    To get a better understanding of these types and their relationships, examine Figure 9-6.
    It shows that all filter attributes are derived from FilterAttribute, and also implement one or
    more of the filter interfaces. The dark boxes represent ready-to-use concrete filters; the rest are
    interfaces or abstract base classes. Later in this chapter, you’ll learn more about each built-in
    filter type.

    MyFilter Demo:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    
    namespace TestMvcWebApp1.ActionResultEx
    {
        public class ShowMessageAttribute:ActionFilterAttribute
        {
            public string Message { get; set; }
            public override void OnActionExecuting(ActionExecutingContext filterContext)
            {
                filterContext.HttpContext.Response.Write("[BeforeAction " + Message + "]");
            }
            public override void OnActionExecuted(ActionExecutedContext filterContext)
            {
                filterContext.HttpContext.Response.Write("[AfterAction " + Message + "]");
            }
            public override void OnResultExecuting(ResultExecutingContext filterContext)
            {
                filterContext.HttpContext.Response.Write("[BeforeResult " + Message + "]");
            }
            public override void OnResultExecuted(ResultExecutedContext filterContext)
            {
                filterContext.HttpContext.Response.Write("[AfterResult " + Message + "]");
            }
        }
    }
    
    

    使用:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    using TestMvcWebApp1.ActionResultEx;
    using System.Data.SqlClient;
    
    namespace TestMvcWebApp1.Controllers
    {
        public class ShowMessageDemoController : Controller
        {
            //
            // GET: /ShowMessageDemo/
            [ShowMessage(Message = "这是我的信息A" , Order=1)]
            [HandleError(View="Problem")]
            public ActionResult Index()
            {
                int a = 0;
                SqlConnection conn = new SqlConnection();
                conn.Open();
    
                return Content("  网页内容  ");
            }
    
        }
    }
    
    

    输出结果:

    [BeforeAction 这是我的信息A][AfterAction 这是我的信息A]

    [BeforeResult 这是我的信息A]  网页内容  [AfterResult 这是我的信息A]

     <customErrors mode="On"></customErrors>

  • 相关阅读:
    python——ddt + excel + HTMLTestRunner 实现接口测试
    APP模拟弱网环境测试教程
    静态语言与动态语言
    Charles手机抓包实用教程
    DS博客作业08--课程总结
    DS博客作业03--栈和队列
    DS博客作业02--线性表
    DS博客作业01--日期抽象数据类型设计与实现
    第四次作业
    C博客作业01--分支、顺序结构
  • 原文地址:https://www.cnblogs.com/wucg/p/1912357.html
Copyright © 2011-2022 走看看