从 Views 文件夹(区域外)中的 Layout.cshtml ,我需要解决在区域内创建的控制器的操作方法。
我定义了一些自定义路由,但默认路由一如既往:
routes.MapRoute("Default", "{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional });
例如:
区域 - 测试,控制器 - HomeController ,操作方法 - < EM>索引
@Url.Action("Index", "Home", new { Area = "Test" })
返回一个空字符串。
@Html.ActionLink("Test link", "Index", "Home")
返回一个空字符串。
@Html.RouteLink("Test Link", "default", new { controller = "Home", action = "Index" })
会返回错误
在路径集合中找不到名为“default”的路径。
为了澄清,不需要使用自定义路由调用此操作。它永远不会通过URL直接访问,因此默认路由应该没问题。
我很沮丧。我该如何解决这个问题呢?
答案 0 :(得分:0)
在相同的命名空间下添加以下类
public class TestAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "Test";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"Test_default",
"Test/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
}
}
在Global.asax下确保拥有RegisterAllAreas()
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
}