這篇文章將為大家詳細(xì)講解有關(guān)如何在ASP.NET Core 2.0中由路由引擎來生成網(wǎng)址,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)客戶idc服務(wù)中心,提供電信內(nèi)江機(jī)房、成都服務(wù)器、成都主機(jī)托管、成都雙線服務(wù)器等業(yè)務(wù)的一站式服務(wù)。通過各地的服務(wù)中心,我們向成都用戶提供優(yōu)質(zhì)廉價(jià)的產(chǎn)品以及開放、透明、穩(wěn)定、高性價(jià)比的服務(wù),資深網(wǎng)絡(luò)工程師在機(jī)房提供7*24小時(shí)標(biāo)準(zhǔn)級(jí)技術(shù)保障。新建一個(gè)空項(xiàng)目,修改Startup.cs文件,添加MVC服務(wù)和中間件:
public void ConfigureServices(IServiceCollection services) { services.AddMvc(); } public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseMvc(routes => { routes.MapRoute( name: "goto_one", template: "one", defaults: new { controller = "Home", action = "PageOne" }); routes.MapRoute( name: "goto_two", template: "two/{id?}", defaults: new { controller = "Home", action = "PageTwo" }); routes.MapRoute( name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); }
添加一個(gè)MobileController控制器類:
public class MobileController : Controller { public IActionResult Index() { var url = Url.Action("Index"); // /mobile return Content($"Mobile/Index (Url: {url})"); } public IActionResult PageOne() { var url = Url.Action("PageOne"); // /mobile/PageOne return Content($"Mobile/One (Url: {url})"); } [HttpGet] public IActionResult PageTwo() { var url = Url.Action("PageTwo"); // /mobile/PageTwo OR /mobile/PageTwo/1? return Content($"(GET) Mobile/Two (Url: {url})"); } [HttpPost] public IActionResult PageTwo(int id) { var url = Url.Action("PageTwo"); // /mobile/PageTwo/1 return Content($"(POST) Mobile/Two: {id} (Url: {url})"); } public IActionResult PageThree() { var url = Url.RouteUrl("goto_two", new { id = 5 }); // /two/5 return Content($"Mobile/Three (Url: {url})"); } public IActionResult PageFour() { var url = Url.RouteUrl("goto_two", new { q = 5 }); // /two?q=5 return Content($"Mobile/Four (Url: {url})"); } public IActionResult PageFive() { return RedirectToAction("PageSix"); } public IActionResult PageSix() { return Content("Mobile/Six (Mobile/Five will also come here)"); } }
討論
我們可以使用MVC的路由機(jī)制來生成網(wǎng)址,而無需在應(yīng)用程序中硬編碼網(wǎng)址。MVC有這么做的所有信息,來自于我們?cè)O(shè)置路由映射所提供的模板。
MVC提供了IUrlHelper接口來提供生成網(wǎng)址的功能。這是通過在控制器基類,視圖和試圖組件公開Url屬性來實(shí)現(xiàn)的。
IUrlHelper接口提供兩個(gè)關(guān)鍵的方法來生成網(wǎng)址:
1.Action:通過提供控制器,方法和路由參數(shù)值來生成網(wǎng)址。
2.RouteUrl: 通過提供路由映射名稱和路由參數(shù)來生成網(wǎng)址。
如果調(diào)用上述方法時(shí)未提供控制器和路由參數(shù),那么MVC會(huì)從當(dāng)前請(qǐng)求或者方法參數(shù)中獲取(即是從當(dāng)前上下文的環(huán)境變量中獲?。O旅娴姆椒ù嬖谟贛obileController控制器中:
public IActionResult PageTwo(int id) { var url = Url.Action("PageTwo"); // /mobile/PageTwo/1 return Content($"(POST) Mobile/Two: {id} (Url: {url})"); }
路由參數(shù)可以作為匿名對(duì)象來提供:
public IActionResult PageThree() { var url = Url.RouteUrl("goto_two", new { id = 5 }); // /two/5 return Content($"Mobile/Three (Url: {url})"); }
如果MVC無法將這些值映射到地址標(biāo)記,那么這些參數(shù)會(huì)作為網(wǎng)址的查詢字符串拼接起來:
public IActionResult PageFour() { var url = Url.RouteUrl("goto_two", new { id=5, key1 = "value1" }); // /two/5?key1=value1 return Content($"Mobile/Four (Url: {url})"); }
ControlBase類上有一個(gè)很方便的方法RedirectToAction,用來將用戶請(qǐng)求重定向到某個(gè)控制器方法中,這一過程是在客戶端完成的:
public IActionResult PageFive() { return RedirectToAction("PageSix"); } public IActionResult PageSix() { return Content("Mobile/Six (Mobile/Five will also come here)"); }
為了將IUrlHeper作為依賴項(xiàng)注入需要的類中,我們需要首先在ConfigureServices中配置相應(yīng)的服務(wù):
public void ConfigureServices(IServiceCollection services) { services.AddSingleton(); services.AddScoped (factory => { var actionContext = factory.GetService ().ActionContext; return new UrlHelper(actionContext); }); services.AddMvc(); }
注:大部分情況下我們無需通過注入來使用IUrlHelper,因?yàn)榭刂破鳎晥D中都已經(jīng)公開了Url屬性供我們使用。
關(guān)于“如何在ASP.NET Core 2.0中由路由引擎來生成網(wǎng)址”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。