我在 Django 中的反向 URL 查找有点麻烦。
从模板:
<form action="{% url 'blog:save' post.slug %}" method="post">
从网址:
url(r'^post/(?P<slug>\w+)/save/$', views.save, name='save'),
从意见:
def save(request, slug):
return HttpResponse("Not Saved.")
我得到的错误:
Exception Type: NoReverseMatch
Exception Value:
Reverse for 'save' with arguments '(u'',)' and keyword arguments '{}' not found.