Django 动态 url。我做错了什么?
所以我有这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能打算使用
\w
来代替,例如:\d
仅匹配数字;\w
匹配任何字母数字字符。AM Kuchling 的 Python 正则表达式 HOWTO。
You probably meant to use
\w
instead, e.g.:\d
matches only digits;\w
matches any alphanumeric character.Python Regular Expression HOWTO by A.M. Kuchling.