没有带有默认路由的 AreaAttribute 的 ASP.Net 核心区域路由

问题描述

我在我的 ASP.Net Core MVC 项目中遇到了有关 AreaRouting 的问题。我想在不为每个控制器添加 AreaAttribute 的情况下使用区域路由(我从一个现有的具有数百个控制器的 ASP.NET MVC 5 项目移动,添加这个属性真的很麻烦)

我的示例应用程序文件夹结构如下所示:

enter image description here

命名空间遵循文件夹结构。 我找到了一种添加自定义约定并提取区域名称方法

internal sealed class AreaRoutingConvention : IControllerModelConvention
    {
        public void Apply(ControllerModel controller)
        {
            var hasRouteAttributes = controller.Selectors.Any(selector => selector.AttributeRouteModel != null);

            if (hasRouteAttributes)
            {
                return;
            }

            var controllerTypeNamespace = controller.ControllerType.Namespace;
            if (controllerTypeNamespace == null)
                return;

            var areaName = controllerTypeNamespace.Split('.').Skipwhile(segment => segment != "Areas").Skip(1).FirstOrDefault();

            
            if (!string.IsNullOrEmpty(areaName))
            {
                var template = areaName + "/[controller]/[action]/{id?}";
                controller.RouteValues.Add("area",areaName);

                foreach (var selector in controller.Selectors)
                {
                    selector.AttributeRouteModel = new AttributeRouteModel
                    {
                        Template = template
                    };
                }
            }
        }
    }

我的示例路由配置是这样的:

app.UseEndpoints(endpoints =>
            {
                endpoints.MapAreaControllerRoute(
                    name: "Activity_default",areaName: "Activity","Activity/{controller=Activity}/{action=Index}/{id?}",defaults: new { controller = "Activity",action = "Index" }
                );
                
                endpoints.MapAreaControllerRoute(
                    name: "Admin_default",areaName: "Admin","Admin/{controller=Admin}/{action=Index}/{id?}",defaults: new { controller = "Admin",action = "Index" }
                );

                endpoints.MapAreaControllerRoute(
                    name: "home_default",areaName: "Home",pattern: "{area}/{controller=Home}/{action=Index}/{id?}");
            });

它几乎适用于我的所有情况: 现在当我输入

  • /Activity/Activity/Index -> 调用索引方法
  • /Activity/Home/Index -> 未找到,如预期
  • /Home/Home/Index -> 调用索引方法
  • /Home/Activity/Index -> 未找到,如预期
  • /Admin/Admin/Index -> 调用索引方法
  • /Admin/Activity/Index -> 未找到,如预期

但我也想在用户进入时路由到/Activity/Activity/Index方法

  • /活动
  • /活动/活动/

有人可以帮忙解决这个问题吗?当我不使用自定义约定并将区域属性添加到控制器时,一切正常。

解决方法

你可以试试路由属性

public partial class ActivityController : Controller
    {

        [Route("~/Activity")]
        [Route("~/Activity/Activity")]
        [Route("~/Activity/Activity/Index")]
        public ActionResult Index()
        {
            ....
        }

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...