Asp.net 5 (MVC6) Areas 分区
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Asp.net 5 (MVC6) Areas 分区相关的知识,希望对你有一定的参考价值。
1. Startup.cs 类的 Configure方法中, 加入Area路由设置代码:
//app.UseMvcWithDefaultRoute();
app.UseMvc(routes=> {
// add the new route here.
routes.MapRoute(name: "areaRoute",
template: "{area:exists}/{controller}/{action}",
defaults: new { controller = "Home", action = "Index" });
routes.MapRoute(
name: "default",
template: "{controller}/{action}/{id?}",
defaults: new { controller = "Home", action = "Index" });
});
2. 创建Areas相关文件夹:
3. 在Area的Views目录下的_ViewStart.cshtml文件中, 指定Area的默认模板
4. 创建Area的Controller类:
[Area("Admin")]
public class HomeController: Controller
{
public IActionResult Login()
{
return View();
}
}
5. 创建_Layout.cshtml及View文件.
以上是关于Asp.net 5 (MVC6) Areas 分区的主要内容,如果未能解决你的问题,请参考以下文章
解读ASP.NET 5 & MVC6系列:ASP.NET 5简介