gpt4 book ai didi

django - 未找到 GET 请求

转载 作者:行者123 更新时间:2023-12-04 02:46:15 25 4
gpt4 key购买 nike

在我的应用程序中,我有各种 articles 用户可以使用我想用作标记系统的 category 字段创建。在我的应用程序的左侧,我希望列出这些类别,以便用户可以按兴趣进行过滤,但我目前无法使其正常工作。下面列出了我收到的错误:

Using the URLconf defined in bitpoll.urls, Django tried these URL patterns, in this order:

^articles/ ^all/$
^articles/ ^get/(?P<article_id>\d+)/$
^articles/ ^category/(?P<article_category>\d+)/$
^admin/

The current URL, articles/category/electronics, didn't match any of these.

我的代码可以在 GitHub 上找到 here错误位置在/article/urls.py

单击 /article/templates/articles.html 中的特定 article 效果很好,但它不适用于我的类别,在我看来它们'以完全相同的方式设置。

最佳答案

在您的文章路由中,正则表达式正在寻找数字。更正正则表达式以匹配您的 article_category 字段中可能出现的任何字符。例如,\w 匹配任何字母数字字符和下划线。

^articles/ ^category/(?P<article_category>\w+)/$

关于django - 未找到 GET 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18803371/

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