我正在关注我的urlpatterns所在的教程:
urlpatterns = patterns('',
url(r'^passwords/$', PasswordListView.as_view(), name='passwords_api_root'),
url(r'^passwords/(?P<id>[0-9]+)$', PasswordInstanceView.as_view(), name='passwords_api_instance'),
...other urls here...,
)
PasswordListView 和 PasswordInstanceView 应该是基于类的视图。 我无法弄清楚 name 参数的含义。它是传递给视图的默认参数吗?
答案 0 :(得分:52)
没有。只是django为您提供了命名视图的选项,以防您需要从代码或模板中引用它们。这是有用且良好的做法,因为您可以避免在代码或模板内部对网址进行硬编码。即使您更改了实际网址,也不必更改任何其他内容,因为您将按名称引用它们。
e.x with views:
from django.http import HttpResponseRedirect
from django.core.urlresolvers import reverse #this is deprecated in django 2.0+
from django.urls import reverse #use this for django 2.0+
def myview(request):
passwords_url = reverse('passwords_api_root') # this returns the string `/passwords/`
return HttpResponseRedirect(passwords_url)
更多here。
e.x。在模板中
<p>Please go <a href="{% url 'passwords_api_root' %}">here</a></p>
更多here。