gpt4 book ai didi

python - Django 网址.py : best way to not have a page number in the url for the first page in a list view?

转载 作者:行者123 更新时间:2023-11-28 00:31:42 25 4
gpt4 key购买 nike

现在我有一个 ListView ,每页显示 10 个帖子:

url 应该是这样的:

www.example.com/posts/1  (First page with 10 results)
www.example.com/posts/2 (Next page with 10 results)

我的 urls.py 看起来像这样:

path('posts/<int:page>', PostList.as_view(), name='post-list'),

我希望能够在没有编号的情况下让帖子的第一页也可见,例如:

www.example.com/posts  (First page with 10 results)

我能够解决这个问题的唯一方法是在 urls.py 中添加另一行,该行指向相同的 View 并且具有相同的名称。

path('posts', PostList.as_view(), name='post-list'),
path('posts/<int:page>', PostList.as_view(), name='post-list'),

这是执行此操作的合适方法还是有更好的方法?

非常感谢!

最佳答案

你可以给page设置一个默认值。在其他情况下,如果PostList类没有得到参数page,而page的值strong> 会默认1。希望能帮到你!

关于python - Django 网址.py : best way to not have a page number in the url for the first page in a list view?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58602225/

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