最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

asp.net core mvc之路由

维修 admin 34浏览 0评论

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>

二、配置多个路由

与本文相关的文章

发布评论

评论列表 (0)

  1. 暂无评论