gpt4 book ai didi

asp.net-mvc - Asp.net MVC 3 路由区域失败

转载 作者:行者123 更新时间:2023-12-04 20:45:27 25 4
gpt4 key购买 nike

我有这样的路线:

我的网站路线在 WebSite/Global.asax.cs :

namespace WebSite
{
public class MvcApplication : HttpApplication
{
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
...
routes.MapRoute(
"Default",
"Authenticated/{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional },
new[] { "WebSite.Controllers" }
);
...
}

void Application_Start()
{
...
AreaRegistration.RegisterAllAreas();
RegisterRoutes(RouteTable.Routes);
...
}
}
}

我的管理区域路由 WebSite/Areas/Admin/AdminAreaRegistration.cs :
namespace WebSite.Areas.Admin
{
public class AdminAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "Admin";
}
}

public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"Admin_default",
"qwerty/Admin/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional },
new[] { "WebSite.Areas.Admin.Controllers" }
);
}
}
}

我的网址:
WebSite: http://www.mywebsite.com/Authenticated/Controller/Action...
Admin: http://www.mywebsite.com/qwerty/Admin/Controller/Action...

我的问题:

使用网站 URL,我可以从管理区域调用 Controller /操作,而无需使用“qwerty/Admin”,这是不对的。我怎样才能解决这个问题?

谢谢你。

最佳答案

只需将此代码放在每个 MapRoute 之后。它应该工作!

.DataTokens["UseNamespaceFallback"] = false;

关于asp.net-mvc - Asp.net MVC 3 路由区域失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18493969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com