我正在尝试匹配django项目中的url。我的网址就像这个http://localhost:8000/article/Google-Home-Sales-Outpace-Amazons-Alexa-For-The-First-Time-13545
和urls.py
a已添加:
path('article/(?P<article_title>[\w\d.\'%@+-]+)', views.article)
def article(request, article_title)):
pass
但这不起作用。任何人都可以帮助我吗?