我很难理解app_name和名称空间之间的联系。
考虑项目级别的urls.py
from django.urls import path, include
urlpatterns = [
path('blog/', include('blog.urls', namespace='blog')),
]
考虑应用级别(博客)urls.py
from django.urls import path
from . import views
app_name = 'blog'
urlpatterns = [
path('', views.post_list, name='post_list'),
path('<int:year>/<int:month>/<int:day>/<slug:post>/', views.post_detail, name='post_detail'),
]
如果我注释掉app_name,则会得到以下信息。
'Specifying a namespace in include() without providing an app_name '
django.core.exceptions.ImproperlyConfigured: Specifying a namespace in include() without providing an app_name is not supported. Set the app_name attribute in
the included module, or pass a 2-tuple containing the list of patterns and app_name instead.
如果我将app_name重命名为任意字符串,则不会出错。
app_name = 'x'
我已经阅读了文档,但仍未点击。谁能告诉我app / name和名称空间的连接方式/原因,为什么允许它们具有不同的字符串值?手动设置app_name是否不是多余的?
答案 0 :(得分:1)
尝试删除app_name ='blog'
您应该使用的是:
'blog:post_list'
和
'blog:post_detail'
您还可以像这样删除第一个网址中的namespace='blog'
:
urlpatterns = [
path('blog/', include('blog.urls')),
]
,然后在您的模板中可以引用没有'blog:.....'的网址:
'post_list'
'post_detail'
答案 1 :(得分:0)
尝试使用元组。
urlpatterns = [
path('blog/', include(('blog.urls', 'blog'))),
]