Django 动态 url。我做错了什么?

发布于 2024-10-17 14:01:40 字数 266 浏览 2 评论 0原文

所以我有这个 URL 方案:

(r'^test/(?P<name>\d+)/', 'test'),

def test(request, name):
    html = "it worked"
    return HttpResponse(html)

但是,当我访问以下 URL 时,我收到 404 错误: http://127.0.0.1:8000/test/words/

我做错了什么?

So I have this URL scheme:

(r'^test/(?P<name>\d+)/', 'test'),

def test(request, name):
    html = "it worked"
    return HttpResponse(html)

however, when I go to the following URL, I get a 404 error:
http://127.0.0.1:8000/test/words/

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雄赳赳气昂昂 2024-10-24 14:01:40

您可能打算使用 \w 来代替,例如:

(r'^test/(?P<name>\w+)/', 'test'),

\d 仅匹配数字; \w 匹配任何字母数字字符。

AM Kuchling 的 Python 正则表达式 HOWTO

You probably meant to use \w instead, e.g.:

(r'^test/(?P<name>\w+)/', 'test'),

\d matches only digits; \w matches any alphanumeric character.

Python Regular Expression HOWTO by A.M. Kuchling.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文