18

区域文件夹如下所示:

Areas 
    Admin
        Controllers
            UserController
            BranchController
            AdminHomeController

项目目录如下所示:

Controller
    UserController
        GetAllUsers

区域路线登记

public override void RegisterArea(AreaRegistrationContext context)
{
    context.MapRoute(
        "Admin_default",
        "Admin/{controller}/{action}/{id}",
        new { action = "Index", id = UrlParameter.Optional },
        new { controller = "Branch|AdminHome|User" }
    );
}

项目路线登记

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.MapRoute(
        name: "Default",
        url: "{controller}/{action}/{id}",
        defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
        namespaces: new string[] { "MyApp.Areas.Admin.Controllers" });
}

当我这样路由时:http://mydomain.com/User/GetAllUsers我得到资源未找到错误(404)。将 UserController 添加到 Area 后出现此错误。

我该如何解决这个错误?

谢谢...

4

2 回答 2

33

你搞砸了你的控制器命名空间。

您的主要路线定义应该是:

routes.MapRoute(
    name: "Default",
    url: "{controller}/{action}/{id}",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
    namespaces: new string[] { "MyApp.Controllers" }
);

您的管理区域路由注册应该是:

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

注意应该如何使用正确的命名空间。

于 2013-03-25T13:43:38.020 回答
4

最新的 ASP.NET Core MVC 解决方案。

[Area("Products")]
public class HomeController : Controller

来源:https ://docs.microsoft.com/en-us/aspnet/core/mvc/controllers/areas

于 2018-03-11T22:44:34.947 回答