zoukankan      html  css  js  c++  java
  • MVC扩展(ActionNameSelectorAttribute vs ActionMethodSelectorAttribute)

    关于ActionNameSelectorAttribute 和 ActionMethodSelectorAttribute的区别,请参考http://www.cnblogs.com/P_Chou/archive/2010/12/01/details-asp-net-mvc-07.html

    区分 [HttpPost] 和  [AcceptVerbs(HttpVerbs.Post)] .他们都是ActionMethodSelectorAttribute的子类。查看代码

    [SuppressMessage("Microsoft.Design", "CA1019:DefineAccessorsForAttributeArguments", Justification = "The accessor is exposed as an ICollection<string>.")]
        [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
        public sealed class AcceptVerbsAttribute : ActionMethodSelectorAttribute {
            public AcceptVerbsAttribute(HttpVerbs verbs)
                : this(EnumToArray(verbs)) {
            }
    
            public AcceptVerbsAttribute(params string[] verbs) {
                if (verbs == null || verbs.Length == 0) {
                    throw new ArgumentException(MvcResources.Common_NullOrEmpty, "verbs");
                }
    
                Verbs = new ReadOnlyCollection<string>(verbs);
            }
    
            public ICollection<string> Verbs {
                get;
                private set;
            }
    
            private static void AddEntryToList(HttpVerbs verbs, HttpVerbs match, List<string> verbList, string entryText) {
                if ((verbs & match) != 0) {
                    verbList.Add(entryText);
                }
            }
    
            internal static string[] EnumToArray(HttpVerbs verbs) {
                List<string> verbList = new List<string>();
    
                AddEntryToList(verbs, HttpVerbs.Get, verbList, "GET");
                AddEntryToList(verbs, HttpVerbs.Post, verbList, "POST");
                AddEntryToList(verbs, HttpVerbs.Put, verbList, "PUT");
                AddEntryToList(verbs, HttpVerbs.Delete, verbList, "DELETE");
                AddEntryToList(verbs, HttpVerbs.Head, verbList, "HEAD");
    
                return verbList.ToArray();
            }
    
            public override bool IsValidForRequest(ControllerContext controllerContext, MethodInfo methodInfo) {
                if (controllerContext == null) {
                    throw new ArgumentNullException("controllerContext");
                }
    
                string incomingVerb = controllerContext.HttpContext.Request.GetHttpMethodOverride();
    
                return Verbs.Contains(incomingVerb, StringComparer.OrdinalIgnoreCase);
            }
        }
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
        public sealed class HttpPostAttribute : ActionMethodSelectorAttribute {
    
            private static readonly AcceptVerbsAttribute _innerAttribute = new AcceptVerbsAttribute(HttpVerbs.Post);
    
            public override bool IsValidForRequest(ControllerContext controllerContext, MethodInfo methodInfo) {
                return _innerAttribute.IsValidForRequest(controllerContext, methodInfo);
            }
        }

    可以看作

    [AcceptVerbs(HttpVerbs.Post)]

    public ActionResult MyTest() 

    完全等于

    [HttpPost]

    public ActionResult MyTest()

    但当Action同时接受2种提交方式时。就应该使用

    [AcceptVerbs(HttpVerbs.Post | HttpVerbs.Put)]

    public ActionResult MyTest()

    而不能用

    [HttpPost]
    [HttpGet]

    public ActionResult MyTest()

    因为一个请求不可能既是Post又是Get.

    关于ActionNameSelectorAttribute , ActionMethodSelectorAttribute使用和扩展

    这里给了详细的说明,  请参照

  • 相关阅读:
    在SSH框架下按条件分页查询
    关于从数据库中取出来的数据在jsp页面上级联显示出来的问题,和ajax处理乱码
    在js中下拉列表值的选定
    java中的日期转换方法
    用js判断输入文本框的内容类型
    将selenium录制的脚本转换为java脚本到Eclipse中运行(一)
    selenium录制并回放请求-心得(一)
    selenium java版本的安装方法与注意事项
    python编写的面向对象的XXE自动化检测工具(对单个功能进行检测)
    微服务&spring cloud架构系列
  • 原文地址:https://www.cnblogs.com/miku/p/2862476.html
Copyright © 2011-2022 走看看