成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

史上最全的ASP.NET MVC路由配置

網絡 路由交換
MVC將一個Web應用分解為:Model、View和Controller。ASP.NET MVC框架提供了一個可以代替ASP.NETWebForm的基于MVC設計模式的應用。

史上最全的ASP.NET MVC路由配置

XD 首先說URL的構造。 其實這個也談不上構造,只是語法特性吧。

一、命名參數規范+匿名對象

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

構造路由然后添加

  1. Route myRoute = new Route("{controller}/{action}", new MvcRouteHandler()); 
  2. routes.Add("MyRoute", myRoute);  

二、直接方法重載+匿名對象

  1. routes.MapRoute("ShopSchema", "Shop/{action}", new { controller = "Home" });  

個人覺得***種比較易懂,第二種方便調試,第三種寫起來比較效率吧。各取所需吧。本文行文偏向于第三種。

1.默認路由(MVC自帶)

  1. routes.MapRoute(  
  2. "Default", // 路由名稱 
  3. "{controller}/{action}/{id}", // 帶有參數的 URL  
  4. new { controller = "Home"action = "Index"id = UrlParameter.Optional } // 參數默認值 (UrlParameter.Optional-可選的意思) ); 

2.靜態URL段

  1. routes.MapRoute("ShopSchema2", "Shop/OldAction", new { controller = "Home"action = "Index" });  
  2.   
  3. routes.MapRoute("ShopSchema", "Shop/{action}", new { controller = "Home" });  
  4. routes.MapRoute("ShopSchema2", "Shop/OldAction.js", 
  5.  new { controller = "Home"action = "Index" }); 

沒有占位符路由就是現成的寫死的。

比如這樣寫然后去訪問http://localhost:XXX/Shop/OldAction.js,response也是完全沒問題的。 controller , action , area這三個保留字就別設靜態變量里面了。

3.自定義常規變量URL段

  1. routes.MapRoute("MyRoute2", "{controller}/{action}/{id}", new { controller = "Home"action = "Index"id = "DefaultId" });  

這種情況如果訪問 /Home/Index 的話,因為第三段(id)沒有值,根據路由規則這個參數會被設為DefaultId

這個用viewbag給title賦值就能很明顯看出

  1. ViewBag.Title = RouteData.Values["id"];  

結果是標題顯示為DefaultId, 注意要在控制器里面賦值,在視圖賦值沒法編譯的。

4.再述默認路由

然后再回到默認路由。 UrlParameter.Optional這個叫可選URL段.路由里沒有這個參數的話id為null。 照原文大致說法,這個可選URL段能用來實現一個關注點的分離。剛才在路由里直接設定參數默認值其實不是很好。照我的理解,實際參數是用戶發來的,我們做的只是定義形式參數名。但是,如果硬要給參數賦默認值的話,建議用語法糖寫到action參數里面。比如:

  1. public ActionResult Index(string id = "abcd"){ViewBag.Title = RouteData.Values["id"];return View();}  

5.可變長度路由

  1. routes.MapRoute("MyRoute", "{controller}/{action}/{id}/{*catchall}", new { controller = "Home"action = "Index"id = UrlParameter.Optional }); 

在這里id和***一段都是可變的,所以 /Home/Index/dabdafdaf 等效于 /Home/Index//abcdefdjldfiaeahfoeiho 等效于 /Home/Index/All/Delete/Perm/.....

6.跨命名空間路由

這個提醒一下記得引用命名空間,開啟IIS網站不然就是404。這個非常非主流,不建議瞎搞。

  1. routes.MapRoute("MyRoute","{controller}/{action}/{id}/{*catchall}", new { controller = "Home"action = "Index"id = UrlParameter.Optional },new[] { "URLsAndRoutes.AdditionalControllers", "UrlsAndRoutes.Controllers" });  

但是這樣寫的話數組排名不分先后的,如果有多個匹配的路由會報錯。 然后作者提出了一種改進寫法。

  1. routes.MapRoute("AddContollerRoute","Home/{action}/{id}/{*catchall}",new { controller = "Home"action = "Index"id = UrlParameter.Optional },new[] { "URLsAndRoutes.AdditionalControllers" });  
  2.   
  3. routes.MapRoute("MyRoute", "{controller}/{action}/{id}/{*catchall}", new { controller = "Home"action = "Index"id = UrlParameter.Optional },new[] { "URLsAndRoutes.Controllers" }); 

這樣***個URL段不是Home的都交給第二個處理 ***還可以設定這個路由找不到的話就不給后面的路由留后路啦,也就不再往下找啦。

  1. Route myRoute = routes.MapRoute("AddContollerRoute",  
  2. "Home/{action}/{id}/{*catchall}",  
  3. new { controller = "Home"action = "Index"id = UrlParameter.Optional },  
  4. new[] { "URLsAndRoutes.AdditionalControllers" });  myRoute.DataTokens["UseNamespaceFallback"] = false;  

7.正則表達式匹配路由

  1. routes.MapRoute("MyRoute", "{controller}/{action}/{id}/{*catchall}", 
  2.  new { controller = "Home"action = "Index"id = UrlParameter.Optional }, 
  3.  new { controller = "^H.*"},  
  4. new[] { "URLsAndRoutes.Controllers"}); 

約束多個URL

  1. routes.MapRoute("MyRoute", "{controller}/{action}/{id}/{*catchall}", 
  2. new { controller = "Home"action = "Index"id = UrlParameter.Optional },  
  3. new { controller = "^H.*"action = "^Index$|^About$"},  
  4. new[] { "URLsAndRoutes.Controllers"});  

8.指定請求方法

  1. routes.MapRoute("MyRoute", "{controller}/{action}/{id}/{*catchall}", 
  2.   
  3. new { controller = "Home"action = "Index"id = UrlParameter.Optional },  
  4.   
  5. new { controller = "^H.*"action = "Index|About"httpMethod = new HttpMethodConstraint("GET") },  
  6.   
  7. new[] { "URLsAndRoutes.Controllers" });  

#p#9.***還是不爽的話自己寫個類實現 IRouteConstraint的匹配方法。

  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.Linq; 
  4. using System.Web; 
  5. using System.Web.Routing; 
  6. /// <summary> 
  7. /// If the standard constraints are not sufficient for your needs, you can define your own custom constraints by implementing the IRouteConstraint interface.  
  8. /// </summary> 
  9. public class UserAgentConstraint : IRouteConstraint 
  10.   
  11.     private string requiredUserAgent; 
  12.     public UserAgentConstraint(string agentParam) 
  13.     { 
  14.         requiredUserAgent = agentParam
  15.     } 
  16.     public bool Match(HttpContextBase httpContext, Route route, string parameterName, 
  17.     RouteValueDictionary values, RouteDirection routeDirection) 
  18.     { 
  19.         return httpContext.Request.UserAgent != null && 
  20.         httpContext.Request.UserAgent.Contains(requiredUserAgent); 
  21.     } 

 

  1. routes.MapRoute("ChromeRoute", "{*catchall}",  
  2.   
  3. new { controller = "Home"action = "Index" },  
  4.   
  5. new { customConstraint = new UserAgentConstraint("Chrome") },  
  6.   
  7. new[] { "UrlsAndRoutes.AdditionalControllers" }); 

比如這個就用來匹配是否是用谷歌瀏覽器訪問網頁的。

10.訪問本地文檔

  1. routes.RouteExistingFiles = true;  
  2.   
  3. routes.MapRoute("DiskFile", "Content/StaticContent.html", new { controller = "Customer"action = "List", });  

瀏覽網站,以開啟 IIS Express,然后點顯示所有應用程序-點擊網站名稱-配置(applicationhost.config)-搜索UrlRoutingModule節點

  1. <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="managedHandler,runtimeVersionv4.0" /> 

把這個節點里的preCondition刪除,變成

  1. <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" /> 

11.直接訪問本地資源,繞過了路由系統

  1. routes.IgnoreRoute("Content/{filename}.html");  

文件名還可以用 {filename}占位符。

IgnoreRoute方法是RouteCollection里面StopRoutingHandler類的一個實例。路由系統通過硬-編碼識別這個Handler。如果這個規則匹配的話,后面的規則都無效了。 這也就是默認的路由里面routes.IgnoreRoute("{resource}.axd/{*pathInfo}");寫最前面的原因。

三、路由測試(在測試項目的基礎上,要裝moq)

  1. PM> Install-Package Moq 

 

  1. using System; 
  2. using Microsoft.VisualStudio.TestTools.UnitTesting; 
  3. using System.Web; 
  4. using Moq; 
  5. using System.Web.Routing; 
  6. using System.Reflection; 
  7. [TestClass] 
  8. public class RoutesTest 
  9.     private HttpContextBase CreateHttpContext(string targetUrl = null, string HttpMethod = "GET"
  10.     { 
  11.         // create the mock request 
  12.         Mock<HttpRequestBase> mockRequest = new Mock<HttpRequestBase>(); 
  13.         mockRequest.Setup(m => m.AppRelativeCurrentExecutionFilePath) 
  14.         .Returns(targetUrl); 
  15.         mockRequest.Setup(m => m.HttpMethod).Returns(HttpMethod); 
  16.         // create the mock response 
  17.         Mock<HttpResponseBase> mockResponse = new Mock<HttpResponseBase>(); 
  18.         mockResponse.Setup(m => m.ApplyAppPathModifier( 
  19.         It.IsAny<string>())).Returns<string>(s => s); 
  20.         // create the mock context, using the request and response 
  21.         Mock<HttpContextBase> mockContext = new Mock<HttpContextBase>(); 
  22.         mockContext.Setup(m => m.Request).Returns(mockRequest.Object); 
  23.         mockContext.Setup(m => m.Response).Returns(mockResponse.Object); 
  24.         // return the mocked context 
  25.         return mockContext.Object; 
  26.     } 
  27.   
  28.     private void TestRouteMatch(string url, string controller, string action, object routeProperties = null, string httpMethod = "GET"
  29.     { 
  30.         // Arrange 
  31.         RouteCollection routes = new RouteCollection(); 
  32.         RouteConfig.RegisterRoutes(routes); 
  33.         // Act - process the route 
  34.         RouteData result = routes.GetRouteData(CreateHttpContext(url, httpMethod)); 
  35.         // Assert 
  36.         Assert.IsNotNull(result); 
  37.         Assert.IsTrue(TestIncomingRouteResult(result, controller, action, routeProperties)); 
  38.     } 
  39.   
  40.     private bool TestIncomingRouteResult(RouteData routeResult, string controller, string action, object propertySet = null
  41.     { 
  42.         Func<object, object, bool> valCompare = (v1, v2) => 
  43.         { 
  44.             return StringComparer.InvariantCultureIgnoreCase 
  45.             .Compare(v1, v2) == 0; 
  46.         }; 
  47.         bool result = valCompare(routeResult.Values["controller"], controller) 
  48.         && valCompare(routeResult.Values["action"], action); 
  49.         if (propertySet != null) 
  50.         { 
  51.             PropertyInfo[] propInfo = propertySet.GetType().GetProperties(); 
  52.             foreach (PropertyInfo pi in propInfo) 
  53.             { 
  54.                 if (!(routeResult.Values.ContainsKey(pi.Name) 
  55.                 && valCompare(routeResult.Values[pi.Name], 
  56.                 pi.GetValue(propertySet, null)))) 
  57.                 { 
  58.                     result = false
  59.                     break; 
  60.                 } 
  61.             } 
  62.         } 
  63.         return result; 
  64.     } 
  65.   
  66.     private void TestRouteFail(string url) 
  67.     { 
  68.         // Arrange 
  69.         RouteCollection routes = new RouteCollection(); 
  70.         RouteConfig.RegisterRoutes(routes); 
  71.         // Act - process the route 
  72.         RouteData result = routes.GetRouteData(CreateHttpContext(url)); 
  73.         // Assert 
  74.         Assert.IsTrue(result == null || result.Route == null); 
  75.     } 
  76.   
  77.     [TestMethod] 
  78.     public void TestIncomingRoutes() 
  79.     { 
  80.         // check for the URL that we hope to receive 
  81.         TestRouteMatch("~/Admin/Index", "Admin", "Index"); 
  82.         // check that the values are being obtained from the segments 
  83.         TestRouteMatch("~/One/Two", "One", "Two"); 
  84.         // ensure that too many or too few segments fails to match 
  85.         TestRouteFail("~/Admin/Index/Segment");//失敗 
  86.         TestRouteFail("~/Admin");//失敗 
  87.         TestRouteMatch("~/", "Home", "Index"); 
  88.         TestRouteMatch("~/Customer", "Customer", "Index"); 
  89.         TestRouteMatch("~/Customer/List", "Customer", "List"); 
  90.         TestRouteFail("~/Customer/List/All");//失敗 
  91.         TestRouteMatch("~/Customer/List/All", "Customer", "List", new { id = "All" }); 
  92.         TestRouteMatch("~/Customer/List/All/Delete", "Customer", "List", new { id = "All"catchall = "Delete" }); 
  93.         TestRouteMatch("~/Customer/List/All/Delete/Perm", "Customer", "List", new { id = "All"catchall = "Delete/Perm" }); 
  94.     } 
  95.   
  96.   
  97.   

***還是再推薦一下Adam Freeman寫的apress.pro.asp.net.mvc.4這本書。稍微熟悉MVC的從第二部分開始讀好了。

責任編輯:林琳 來源: 博客園
相關推薦

2009-08-01 23:17:19

ASP.NET面試題目ASP.NET

2009-07-31 12:43:59

ASP.NET MVC

2015-01-07 09:32:50

ASP.NET MVC路由

2009-07-22 15:02:02

ASP.NET MVC

2009-07-24 13:20:44

MVC框架ASP.NET

2009-03-13 10:58:48

ASP.NetMVC框架編程

2009-07-20 15:44:32

ASP.NET MVC

2009-07-22 09:11:02

Action方法ASP.NET MVC

2009-07-22 13:24:24

ASP.NET MVC

2009-07-22 10:09:59

ASP.NET MVC

2009-07-23 14:31:20

ASP.NET MVC

2009-07-23 15:44:39

ASP.NET MVC

2009-07-20 10:53:59

ASP.NET MVC

2010-03-12 09:38:58

2009-07-22 10:34:37

ActionInvokASP.NET MVC

2011-09-22 10:58:56

ASP.NET

2009-07-20 12:59:53

ASP.NET MVCASP.NET框架的功

2009-07-22 15:27:39

ASP.NET MVC自定義路由

2009-07-22 10:13:31

異步ActionASP.NET MVC

2009-07-23 11:33:18

點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 欧美一级黄色片在线观看 | 精品视频www | 欧美综合在线视频 | 亚洲精品久久久一区二区三区 | 国产一区二区三区视频免费观看 | 免费黄色的视频 | 亚洲精品视频在线播放 | 中文字幕不卡在线88 | 国产综合av | 成人av一区 | 奇米视频777 | 精品一区二区免费视频 | 精品视频一区二区三区在线观看 | 精品日韩在线 | 国产成人a亚洲精品 | 亚洲国产区| 欧美日韩国产精品一区二区 | 先锋影音资源网站 | 一区二区不卡 | 91福利在线观看视频 | 午夜国产精品视频 | 久久久久久久久久久久久久久久久久久久 | 久久亚洲一区二区 | 欧美炮房 | 日韩欧美网 | 亚洲综合二区 | 久久99精品国产 | 精品三级在线观看 | 免费视频99 | 日韩精品一区二区三区在线播放 | 国产一级一片免费播放 | 毛片免费观看 | 欧美色综合一区二区三区 | 亚洲免费视频在线观看 | 精品国产乱码久久久久久闺蜜 | 四虎影院新地址 | 久久久国产精品视频 | 亚洲视频在线播放 | 日本不卡一区二区三区在线观看 | 国产一区中文字幕 | 午夜国产一级片 |