gpt4 book ai didi

c# - ASP.NET MVC 路由表中没有路由与提供的值匹配

转载 作者:太空宇宙 更新时间:2023-11-03 16:06:55 24 4
gpt4 key购买 nike

<分区>

我遇到了一个奇怪的问题,其中以下行适用于多个环境,但在我们的一台服务器上,它抛出 System.InvalidOperationException:路由表中没有路由与提供的值匹配。

@{Html.RenderAction("Action", "Home", new { area = "Custom" });}

有什么要寻找的想法吗?

RouteConfig.cs 的内容:

    routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional },
new[] { "Backoffice.Controllers" }
);

以及 CustomAreaRegistration.cs 的内容:

public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"Custom_default",
"Custom/{controller}/{action}",
new { action = "Index" }
);
}

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