zoukankan      html  css  js  c++  java
  • Asp.Net MVC2.0 Url 路由入门---实例篇

    Routing的作用:它首先是获取到View传过来的请求,并解析Url请求中Controller和Action以及数据,其次他将识别出来的数据传递给Controller的Action(Controller的方法)。这是Routing组件的两个重要的作用!

    下面我们从几个例子来讲解一下Url路由的使用。

    MapRoute()有6个方法可以重载,下面举5个例子相应介绍!

    实例一:首先讲解的是系统默认提供的路由格式,下面是系统给的默认代码:

     
    01 public static void RegisterRoutes(RouteCollection routes)
    02 {
    03     routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    04  
    05     routes.MapRoute(
    06         "Default", // 路由名称
    07         "{controller}/{action}/{id}", // 带有参数的 URL
    08         new { controller = "Home", action = "Index", id = UrlParameter.Optional } // 参数默认值
    09     );
    10   }

    Url格式为:http://localhost:0000/home/index  对应规则为:{controller}/{action}/{id}  黑体部分就是对应部分。这还是有默认值的情况。

    详细匹配应该为:http://localhost:0000/Custom/Detials/1   去掉主机域名,剩下的对应就是匹配Controller和actiong了。通过Routing组件解析这个Url,Controller是Custom,Action是Detials。传递过去的Id是1。

         这就是使用了MapRoute( string name, string url, object defaults);这个方法的重载。

    实例二:不使用默认值的Url路由规则

      函数头:MapRoute( string name, string url);

       routes.MapRoute("没有默认值路由规则", "{controller}/{id}-{action}");

      适合的Url例子:http://localhost:0000/Custom/1-Detials   

      它将不匹配http://localhost:0000/

    实例三:带名称空间的Url路由规则

          函数头:MapRoute( string name, string url, string[] namespaces);//路由名,Url规则,名称空间

          routes.MapRoute(
                  "MyUrl", // 路由名称
                  "{controller}/{id}-{action}", // 带有参数的 URL
                  new { controller = "Home", action = "Index", id = UrlParameter.Optional }, // 参数默认值
                  new string[] { "MvcDemo.Controllers" }//命名空间
              );

           Url:http://localhost:0000/Custom/1-Detials 

           这个例子是带命名空间的路由规则,这在Aeras使用时非常有用。不多说,后面再说!

    实例四:带约束的路由规则

          函数头:MapRoute( string name, string url, object defaults, object constraints);//路由名,Url规则,默认值,名称空间

          routes.MapRoute(
                    "Rule1",
                    "{controller}/{action}-{Year}-{Month}-{Day}}",
                    new { controller = "Home", action = "Index", Year = "2010", Month = "04", Day = "21" },
                    new { Year = @"^d{4}", Month = @"d{2}" }
                );

           Url:http://localhost:14039/home/index-2010-01-21

    实例五:带名称空间,带约束,带默认值的路由规则

          函数头:MapRoute( string name, string url, object defaults, object constraints, string[] namespaces);

            routes.MapRoute(
                    "Rule1",
                    "Admin/{controller}/{action}-{Year}-{Month}-{Day}",
                    new { controller = "Home", action = "Index", Year = "2010", Month = "04", Day = "21" },
                    new { Year = @"^d{4}", Month = @"d{2}" },
                    new string[] { "MvcDemo.Controllers" }
                );

            Url:http://localhost:14039/Admin/home/index-2010-01-21

    实例六:捕获所有的路由

           routes.MapRoute(
                    "All", // 路由名称
                    "{*Vauler}", // 带有参数的 URL
                    new { controller = "Home", action = "Index", id = UrlParameter.Optional } // 参数默认值
                );
              

    关于Global.asax剩余部分的说明:

           routes.IgnoreRoute("{resource}.axd/{*pathInfo}");是忽略这个规则的Url

       AreaRegistration.RegisterAllAreas();//注册所有的Areas
           RegisterRoutes(RouteTable.Routes);//注册我们写的规则
           //RouteDebug.RouteDebugger.RewriteRoutesForTesting(RouteTable.Routes);//调试用语句,需要下载RouteDebug.dll,并添加引用!加入这句话后就可以测试Url路由了。

  • 相关阅读:
    简单爬虫爬取知乎日报并保存日报网页到本地
    从0开始学爬虫6比价工具开发2之图书信息汇总
    从0开始学爬虫6比价工具开发1之爬取当当、京东的数据
    从0开始学爬虫5之优雅的使用字符串
    从0开始学爬虫4之requests基础知识
    从0开始学爬虫3之xpath的介绍和使用
    从0开始学爬虫2之json的介绍和使用
    从0开始学爬虫1之环境搭建篇
    jenkins结合supervisor进行python程序发布后的自动重启
    ansible常用的方法小结
  • 原文地址:https://www.cnblogs.com/Jeely/p/10956688.html
Copyright © 2011-2022 走看看