2

我究竟做错了什么?

我的默认 /User 路由

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

我想分离代码,所以我创建了另一个控制器“UserProducts”

我的路线

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

我的 UserProducts 控制器中有 ActionResult 索引,但是我的

localhost/user/products

不起作用:

Error 404 - The resource cannot be found.
4

1 回答 1

5

您可能按错误的顺序排列它们。注册这些路由的顺序很重要,第一个映射将覆盖它之后的映射。将这UserProducts一行放在上面的那一行 for User

于 2012-05-20T00:11:54.463 回答