gpt4 book ai didi

asp.net-mvc-5 - MVC 属性路由似乎忽略了 RoutePrefix 并导致多个 Controller 中的匹配操作错误

转载 作者:行者123 更新时间:2023-12-02 04:59:09 26 4
gpt4 key购买 nike

我正在使用 MVC 属性路由 (MVC 5.1.2) 并且遇到错误:

Multiple controller types were found that match the URL. This can happen if attribute routes on multiple controllers match the requested URL.

The request has found the following matching controller types:FFInfo.WebUI.Areas.Admin.Controllers.HomeControllerFFInfo.WebUI.Areas.Admin.Controllers.SectionController

只有当我访问 /Admin/Sections/ 时才会发生这种情况我不太确定为什么,因为只有一个路由可以匹配该 URL,任何人都可以帮我找出问题所在吗?请注意这个问题是 5.1.2 特有的,MVC 5.0 工作正常。

基本 Controller :

[RouteArea("Admin")]
public class BaseController : Controller
{
}

家庭 Controller :

[RoutePrefix("")]
[Route("{action}")]
public class HomeController : BaseController
{

public ActionResult Index()
{
}

public ActionResult Updates()
{
}

[ChildActionOnly]
public PartialViewResult GetUpdatesGrid()
{
}


public ActionResult GetUpdates(JqGridRequest Request)
{
}
}

部分 Controller :

[RoutePrefix("Sections")]
[Route("{action}")]
public class SectionController : BaseController
{
[Route]
public ActionResult Sections()
{
}

[ChildActionOnly]
public PartialViewResult GetSectionsGrid()
{
}

public ActionResult GetSections(JqGridRequest Request)
{
}

public ActionResult AddSection()
{
}

[HttpPost, ValidateAntiForgeryToken]
public ActionResult AddSection(AddEditSectionVM model, HttpPostedFileBase LogoFile)
{
}

public ActionResult EditSection(Int16? ID)
{
}

[HttpPost, ValidateAntiForgeryToken]
public ActionResult EditSection(AddEditSectionVM model, HttpPostedFileBase Logo)
{
}

public ActionResult Releases()
{
}

[ChildActionOnly]
public PartialViewResult GetReleasesGrid()
{
}

public ActionResult GetReleases(JqGridRequest Request)
{
}

public ActionResult AddRelease()
{
}

[HttpPost, ValidateAntiForgeryToken]
public ActionResult AddRelease(AddEditReleaseVM model)
{
}
}

我对RouteArea的理解RoutePrefix ,和Route属性告诉我 /Admin/Index将调用 Index ActionResult家庭 Controller 和 URL Admin/Sections应该调用Index ActionResult部门 Controller 。所有其他路线在每个 Controller 中都工作得很好,当您转到/Admin/Index时效果很好。我仅在访问 /Admin/Sections 时收到此错误。怎么了?

最佳答案

这似乎是 ASP.Net MVC 5.1 中与属性路由如何处理潜在的不明确匹配相关的重大更改的副作用: http://www.asp.net/mvc/overview/releases/mvc51-release-notes

从 5.0 更新到当前的 5.1.2 时,我们遇到了类似的问题。看起来像这样的嵌套路由恰好是基于旧逻辑工作的,但现在由于严格的破坏性更改而失败了。

在您的示例中,/Admin/Index 在技术上可以在 HomeController 上匹配,因为它可以被解释为/{area=Admin}/{action=Index}。似乎没有任何特殊的逻辑(或者至少,似乎不再有)来查看 {action} 段是否恰好与同一区域中的备用 Controller 上定义的 RoutePrefix 匹配。

这似乎使得这样的嵌套路由不再可能,因为您必须向 HomeController 添加定义的 RoutePrefix (例如“Home”)来区分 Controller 路由匹配。也许这可以通过 RouteConstraint 或其他机制来解决,但我还没有找到解决方案。

关于asp.net-mvc-5 - MVC 属性路由似乎忽略了 RoutePrefix 并导致多个 Controller 中的匹配操作错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23772190/

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