我有联系

 a href="editYou/{{costumer.slug}}"

和URL parttern
(r'editYou/<?P(costumerSlug>.*)/$', 'editYou'),

指的是方法
def editYou(request, costumerSlug):

但Django显示了一个错误:
The current URL, profile/editYou/es, didn't match any of these.

你怎么帮我找到原因?

最佳答案

你的模式错了,应该是

r'editYou/(?P<costumerSlug>.*)/$'
#         ^^^^
#   not   <?P(costumerSlug>.*)

关于python - URL配置错误Django,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16099885/

10-12 18:31