区域的路由问题
Routing Issue With Areas
如标题所述,我遇到了路由和区域问题。我的项目中有一个区域部分,其中只有一个区域。它里面有一个策略控制器。在项目外部有一个带有 LoginController 的控制器文件夹。
当我尝试访问 URL "BoB/Login/ChangeSection"(BoB 是项目名称,Login 是控制器,ChangeSection 是操作)时,它被发送到 "BoB/Policy/Login"。这意味着 Policy 区域内的 Area 注册正在抓取请求并将 Policy 前缀放在前面,而这是不应该的。
这是我的项目 RouteConfig
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "BoBHome", action = "Index", id = UrlParameter.Optional },
namespaces: new string[] { "BoB.Controllers" }
);
这里是区域注册
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
name: "BoBPolicy_default",
url: "Policy/{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces: new string[] { "BoB.Areas.BoBPolicy.Controllers" }
);
}
我的印象是命名空间可以防止这种情况发生,但显然不是。感谢任何帮助。
一些附加信息:
这来自另一个非 MVC 项目,因此重定向看起来像这样:
Response.Redirect("/BoB/BoBLogin/ChangeSection?controller=PolicyOverview");
我认为您的问题类似于non area route issue,需要使用区域参数来防止在使用默认路由时插入区域URL前缀:
public override void RegisterArea(AreaRegistrationContext context)
{
// set area parameter with area name
context.MapRoute(
name: "BoBPolicy_default",
url: "Policy/{controller}/{action}/{id}",
// add area parameter here
defaults: new { area = "Policy", controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces: new string[] { "BoB.Areas.BoBPolicy.Controllers" }
);
}
注意:由于区域路由注册总是放在默认路由之上(阅读 this answer 了解其背后的原因),当区域路由时,路由引擎可能错误地将默认路由请求拾取到区域路由中未指定约束。
相关:
如标题所述,我遇到了路由和区域问题。我的项目中有一个区域部分,其中只有一个区域。它里面有一个策略控制器。在项目外部有一个带有 LoginController 的控制器文件夹。
当我尝试访问 URL "BoB/Login/ChangeSection"(BoB 是项目名称,Login 是控制器,ChangeSection 是操作)时,它被发送到 "BoB/Policy/Login"。这意味着 Policy 区域内的 Area 注册正在抓取请求并将 Policy 前缀放在前面,而这是不应该的。
这是我的项目 RouteConfig
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "BoBHome", action = "Index", id = UrlParameter.Optional },
namespaces: new string[] { "BoB.Controllers" }
);
这里是区域注册
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
name: "BoBPolicy_default",
url: "Policy/{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces: new string[] { "BoB.Areas.BoBPolicy.Controllers" }
);
}
我的印象是命名空间可以防止这种情况发生,但显然不是。感谢任何帮助。
一些附加信息:
这来自另一个非 MVC 项目,因此重定向看起来像这样:
Response.Redirect("/BoB/BoBLogin/ChangeSection?controller=PolicyOverview");
我认为您的问题类似于non area route issue,需要使用区域参数来防止在使用默认路由时插入区域URL前缀:
public override void RegisterArea(AreaRegistrationContext context)
{
// set area parameter with area name
context.MapRoute(
name: "BoBPolicy_default",
url: "Policy/{controller}/{action}/{id}",
// add area parameter here
defaults: new { area = "Policy", controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces: new string[] { "BoB.Areas.BoBPolicy.Controllers" }
);
}
注意:由于区域路由注册总是放在默认路由之上(阅读 this answer 了解其背后的原因),当区域路由时,路由引擎可能错误地将默认路由请求拾取到区域路由中未指定约束。
相关: