如何实现其他参数的路由寻呼?

问题描述 投票:0回答:2

我知道当只有一条路线(例如/Dinners/Page/1)时如何在路线上实现分页。我的问题是我有一个文章列表。这些文章位于类别和子类别中。

如果未指定类别/子类别,我想返回所有文章。 如果仅提供类别,我提供该类别中的所有文章 如果提供了类别和子类别,我只想要子类别中的文章。

我的这个工作没有问题。然后我想添加分页。我想要一条可以执行以下操作的路线: domain.com/6 - 转到所有文章的第 6 页 domain.com/category/2 - 转到类别文章的第 2 页 domain.com/category/subcategory/3 - 转到子类别文章的第 3 页

我无法正常工作,因为第一个示例正在查找类别 6,第二个示例正在查找类别 2。我尝试添加约束,希望将数值归因于页面。没有喜悦。

另外,我想做这个服务器端。

有什么想法吗?这是我的 RouteConfig 中的路线:

   routes.MapRoute(
                name: "Category",
                url: "{category}/{subcategory}/{page}",
                defaults: new { controller = "Articles", action = "Index", category= UrlParameter.Optional, subcategory = UrlParameter.Optional, page = UrlParameter.Optional }
                //, constraints: new { page = @"\d+" }
            );
asp.net-mvc pagination asp.net-mvc-routing
2个回答
2
投票

好的。我尝试了一下路线并添加了三个路线来替换原来的路线。

第一个捕获了所有分页视图。如果没有提供分页,我只显示第一页。第二条路线是主类与分页。

如果有子类别,则第三条路线会覆盖。现在这就像一个魅力。 :)

如果您想确切地知道我做了什么,这是我的路线:

        routes.MapRoute(
            name: "Paged",
            url: "{page}",
            defaults: new { controller = "Articles", action = "Index", page = UrlParameter.Optional }, 
            constraints: new { page = @"\d+" }
        );

        routes.MapRoute(
            name: "PagedCategory",
            url: "{category}/{page}",
            defaults: new { controller = "Articles", action = "Index", category = UrlParameter.Optional, page = UrlParameter.Optional }
            //, constraints: new { page = @"\d+" }
        );

        routes.MapRoute(
            name: "PagedSubCategory",
            url: "{category}/{subcategory}/{page}",
            defaults: new { controller = "Articles", action = "Index", category = UrlParameter.Optional, subcategory = UrlParameter.Optional, page = UrlParameter.Optional }
            //, constraints: new { page = @"\d+" }
        );

-1
投票

将页码作为查询字符串参数传递,例如:

category/subcategory?page=1

或者像这样改变你的路线,

routes.MapRoute(
                name: "Category",
                url: "{controller}/{action}/{category}/{subcategory}/{page}",
                defaults: new { controller = "Articles", action = "Index", category= UrlParameter.Optional, subcategory = UrlParameter.Optional, page = UrlParameter.Optional }
                //, constraints: new { page = @"\d+" }
            );

希望这有效,谢谢。

© www.soinside.com 2019 - 2024. All rights reserved.