zoukankan      html  css  js  c++  java
  • Custom Action Method Selector in MVC

    Custom Action Method Selector in MVC

    http://www.codeproject.com/Articles/291433/Custom-Action-Method-Selector-in-MVC

    Introduction

    The default routing algorithm for how the ASP.NET MVC framework invokes actions is like {controller}/ {action}/ {id} patterns.

    But this becomes more complex when you have two methods with the same name, or when you invoke an action when form data is submitted, or execute a method only when an AJAX request is made.

    Implementation

    DisplayApplication.JPG

    This can be done using ActionMethodSelector attributes. We generally use method selectors like:

    1. AcceptVerbs
    2. ActionName

    AcceptVerbs

    This attribute is used when we want to execute some action when a particular HTTP operation is performed like POST, GET, DELETE, etc. E.g.:

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Create(Employee employee)
    {
          // To Do Code Here
    }

    The above method is executed when an HTTP POST operation is performed.

    AcceptName

    This attribute is used when you expose an action name with a different name than its method name, or you can use an action name attribute to expose two methods with the same name as the action with different names. E.g.:

    [ActionName(“Edit”)]
    [AcceptVerbs(HttpVerbs.Get)]
    public ActionResult Edit_GET(Employee  employee)
    {
        // To Do Code Here
    }
    [ActionName(“Edit”)]
    [AcceptVerbs(HttpVerbs.Post)]
    Public ActionResult Edit_POST(Employee employee)
    {
        // To Do Code Here
    }

    Custom Action Method Selector

    You can build your own ActionMethodSelector attributes by deriving from the abstractActionMethodSelectorAttribute class.

    This is an extremely simple class; you just need to override the method named IsValidForRequest (). If this returns false, this action method is not executed.

    Now take a simple example of the Custom Action Method Selector. Develop an Ajaxmethod custom attribute useful for when you want to execute some action when an AJAX request is made.

    The first step is to create an MVC application. Then add a class file named AjaxMethod.cs and inherit that class fromActionMethodSelectorAttribute. Then override a method named IsValidForRequest(). Your class will look like below:

    public class AjaxMethod:ActionMethodSelectorAttribute
    {
       public override bool IsValidForRequest(ControllerContext controllerContext, 
              System.Reflection.MethodInfo methodInfo)
       {
           return controllerContext.HttpContext.Request.IsAjaxRequest();
       }
    }

    In the IsValidForReuest method, we check the Request object for the AJAX request.

    Now we can use the Ajaxmethod attribute in our controller when you want to execute some action only when an AJAX request comes. For this, add a controller named NewsController into the controller folder. In this controller, we define two index actions: first index action only executes when a page is posted back and the second action is invoked when an AJAX request comes. Your controller will look like below:

    public class NewsController : Controller
    {
    
        private readonly List<string> _news = new List<string>();
        private Random _rnd = new Random();
    
        public NewsController()
        {
            _news.Add("Moon Explodes");
            _news.Add("Stock Market up 200 percent");
            _news.Add("Talking Robort Created!");
        }
        //    // GET: /News/
    
        public ActionResult Index()
        {
            var SelectedIndex = _rnd.Next(_news.Count);
            ViewData["News"] = _news[SelectedIndex];
            return View();
        }
    
    
        [AjaxMethod]
        [ActionName("Index")]
        public string Index_AJAX()
        {
            var SelectedIndex = _rnd.Next(_news.Count);
            return _news[SelectedIndex];
        }
    }

    Now add a View named index.aspx for displaying news and add the below markup into that:

    <script type="text/javascript" src="../../Scripts/MicrosoftAjax.js"></script>
        <script type="text/javascript" src="../../Scripts/MicrosoftMvcAjax.js"></script>
          <%= Ajax.ActionLink("Get News", "Index", new AjaxOptions { UpdateTargetId = "news" })%>
          <span id="news"%><%:ViewData["News"] %></span>

    Now run the application. You will find that when the page loads the first time the first index action executes and when you click on the GetNews link at that time, the second index action executes. The first time, it will go check theAjaxmethod attribute but the IsValidForRequest method will return false and then it will execute the first index action, but when you click on the link at that time, IsValidForRequest returns true and executes the second action.

    Conclusion

    Some of the least customized but very useful extension points in ASP.NET MVC are action method selector attributes. But using them, we can make seemingly complex things trivial.

     

    License

     

    This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

     

  • 相关阅读:
    Codeforces 938G(cdq分治+可撤销并查集+线性基)
    codeforces 938F(dp+高维前缀和)
    寒武纪camp Day6
    寒武纪camp Day5
    寒武纪camp Day4
    bzoj4161 (k^2logn求线性递推式)
    loj10003加工生产调度
    loj10002喷水装置
    loj10001种树
    bzoj1023
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/3129081.html
Copyright © 2011-2022 走看看