asp.net core mvc之路由
一、默认路由 (Startup.cs文件)
routes.MapRoute(name: "default",template: "{controller=Home}/{action=Index}/{id?}");
默认访问可以匹配到
https://localhost:44302/home/index/1
https://localhost:44302/home/index
https://localhost:44302/home
https://localhost:44302
也可以匹配到
https://localhost:44302/course/learn/1
1、创建 course 控制器
Controllers文件夹下,右键->添加控制器->
-》CourseController.cs
->
2、创建是learn视图
在Views文件夹下,新建 Course 文件夹。然后右键 -> 添加-》视图-》learn.cshtml
@{ViewData["Title"]= "学习";
}<h1>学习页面内容</h1>
二、配置多个路由
asp.net core mvc之路由
一、默认路由 (Startup.cs文件)
routes.MapRoute(name: "default",template: "{controller=Home}/{action=Index}/{id?}");
默认访问可以匹配到
https://localhost:44302/home/index/1
https://localhost:44302/home/index
https://localhost:44302/home
https://localhost:44302
也可以匹配到
https://localhost:44302/course/learn/1
1、创建 course 控制器
Controllers文件夹下,右键->添加控制器->
-》CourseController.cs
->
2、创建是learn视图
在Views文件夹下,新建 Course 文件夹。然后右键 -> 添加-》视图-》learn.cshtml
@{ViewData["Title"]= "学习";
}<h1>学习页面内容</h1>
二、配置多个路由