首页 > Web开发 > 详细

MVC路由约束

时间:2014-09-26 11:00:59      阅读:213      评论:0      收藏:0      [点我收藏+]
public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
               name: "Details",
               url: "{controller}/{action}/{id}/{t}",
               defaults: new { action = "Details" },
               constraints: new { id = @"\d+", t = @"\d+" }    //路由约束   用于约束id和t为0到多个数字组成,当id或t为非数字时,会跳过这个路由,而尝试由下一个路由来匹配。
               );

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

 

MVC路由约束

原文:http://www.cnblogs.com/qk2014/p/3994394.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!