gpt4 book ai didi

asp.net-mvc - ASP.NET MVC 3 - 区域 URL 路由问题

转载 作者:行者123 更新时间:2023-12-01 08:39:41 25 4
gpt4 key购买 nike

我有一个 ASP.Net MVC 3 应用程序。有 2 个区域:

  • Auth - 处理所有的身份验证等
  • 管理 - 属性(property)管理领域

在管理区域中,我有一个 ManagementController 和一个 PropertyController。 ManagementController 什么都不做,它只有一个简单的 Index ActionResult 而不是返回一个 View 。

PropertyController 有一个 Index ActionResult,它返回一个包含属性列表的 View ,以及一个 Edit ActionResult,它以 propertyId 作为参数。在属性索引 View 中,我有一个带有属性列表的网格和一个使用以下代码编辑属性的选项:

@Html.ActionLink("Edit", "Edit","Property", new { id = item.PropertyId })

理论上这应该重定向到我的属性 Controller 的编辑操作结果,但是它重定向到我的管理 Controller 的索引操作结果。我的 ManagementAreaRegistration 文件如下所示:

context.MapRoute(null, "management", new { controller = "management", action = "Index" });
context.MapRoute(null, "management/properties", new { controller = "Property", action = "Index" });
context.MapRoute(null, "management/properties/Edit/{propertyId}", new { controller = "Property", action = "Edit" });

我的 global.asax 的 RegisterRoutes 是这样的:

            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);

我错过了什么,为什么它会重定向到错误的 Controller 和操作?提前致谢!

最佳答案

您可能需要在路由值参数中指定区域:

@Html.ActionLink("Edit", "Edit", "Property", new { id = item.PropertyID, area = "Management" }, new { })

根据用于此调用的构造函数,您需要指定最后一个参数 htmlAttributes,根据您的目的,该参数将为空。

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

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