gpt4 book ai didi

Django 网址错误 : Unknown Specifier ? P\d

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

我的 urls.py 文件是这样的:

urlpatterns = [
url(r'^chat/(?P\d+)/$', views.chatindex_view, name='chatindex_view'),
]

我在执行 runserver 命令时遇到此错误:

in regex (regex, six.text_type(e))
django.core.exceptions.ImproperlyConfigured: "^chat/(?P\d+)/$" is not a valid regular expression: unknown specifier: ?P\d

最佳答案

那是无效的。您要获取的关键字参数在哪里?

url(r'^chat/(?P<id>\d+)/$', views.chatindex_view, name='chatindex_view'),

关于Django 网址错误 : Unknown Specifier ? P\d,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40827907/

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