[Django]-Django Url Error: Unknown Specifier ?P\d

4👍

That’s not valid. Where is the keyword argument you are trying to get ?

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

Leave a comment