.net 5.0 mvc 中使用 Areas

项目总体文件结构

.net 5.0 mvc 中使用 Areas

 

 

1 在项目中新建 Areas 文件夹
2 在 Areas 文件夹中新建 Orders 和 Products 文件夹
3 在 Orders 和 Products 文件夹下分别新建 Controllers 和 Views 文件夹
4 分别在 Orders 和 Products 文件夹下的 Controllers 文件夹中添加控制器并在控制器中对应添加 Area("Orders") 和 Area("Products") 特性

.net 5.0 mvc 中使用 Areas

 

 .net 5.0 mvc 中使用 Areas


5 在Startup.cs 中的Configure方法中的app.UseEndpoints注册路由
endpoints.MapControllerRoute(
name: "MyArea",
pattern: "{area:exists}/{controller}/{action=Index}/{id?}");

.net 5.0 mvc 中使用 Areas

6 测试

.net 5.0 mvc 中使用 Areas

 

.net 5.0 mvc 中使用 Areas

上一篇:Centos7下php-fpm的启动服务脚本


下一篇:js 正则表达式