码迷,mamicode.com
首页 > Web开发 > 详细

MVC5新特性(一)之RouteAttribute打造自己的URL规则

时间:2016-08-13 12:37:56      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

1、RouteAttribute概述

  RouteAttribute的命名空间是System.Web.Mvc,区别与web api的RouteAttribute(它的命名空间是System.Web.Http)

  默认情况下MVC的特征路由(RouteAttribute)功能是关闭的,需要手动启动,启动方式:

        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapMvcAttributeRoutes();//启用Attribute路由

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );
        }    

2、RouteAttribute简单例子

        [Route("list.html")]
        [Route("list_{category}.html")]
        [Route("list_{category}_p{page:int}.html")]
        public void ArticleList(string category, int page = 1)
        {
            var title = string.IsNullOrEmpty(category) ? "所有资讯" : category + "资讯";

            Response.Write(string.Format("分类:{0},页码:{1}<br/>我们都是好孩子!!!", title, page));
        }
  Route("list.html")匹配地址:http://localhost:2000/list.html

  技术分享

  Route("list/{category}.html")匹配地址:http://localhost:2000/list/news.html

  技术分享

  Route("list/{category}/{page:int}.html")匹配地址:http://localhost:2000/list/bews/2.html
  

  技术分享

MVC5新特性(一)之RouteAttribute打造自己的URL规则

标签:

原文地址:http://www.cnblogs.com/amywechat/p/5767619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!