在include()中使用名称空间时有关app_name的ImproperlyConfiguredError


105

我目前正在尝试Django。我在urls.py namespace中的一个参数中使用了参数。include()当我运行服务器并尝试浏览时,出现此错误。

File "C:\Users\User\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django\urls\conf.py", line 39, in include
    '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.

这些是我的urls.py文件:

#project/urls.py

from django.conf.urls import include, url
from django.contrib import admin

urlpatterns = [
    url(r'^reviews/', include('reviews.urls', namespace='reviews')),
    url(r'^admin/', include(admin.site.urls)),
]

#app/urls.py

from django.conf.urls import url

from . import views

urlpatterns = [
    # ex: /
    url(r'^$', views.review_list, name='review_list'),
    # ex: /review/5/
    url(r'^review/(?P<review_id>[0-9]+)/$', views.review_detail, name='review_detail'),
    # ex: /wine/
    url(r'^wine$', views.wine_list, name='wine_list'),
    # ex: /wine/5/
    url(r'^wine/(?P<wine_id>[0-9]+)/$', views.wine_detail, name='wine_detail'),
]

我如何通过app_name错误消息中所述的?

Answers:


152

检查文档是否包含在此处

您所做的不是传递参数包括的可接受方法。您可以这样做:

url(r'^reviews/', include(('reviews.urls', 'reviews'), namespace='reviews')),

刚刚尝试了这个并得到了另一个错误... url(r'^ reviews /',include('reviews.urls',namespace ='reviews',app_name ='reviews')),TypeError:include()遇到了意外关键字参数“ app_name”
Nelson M,

1
非常抱歉。那应该用于模块而不是模式。请检查更新后的答案。
unixia '18

1
这个解决方案对我也有帮助。我正在从django-oauth-toolkit.readthedocs.io/en/latest/tutorial/…中学习本教程,并且有一条指令可以做:urlpatterns = [#OAuth 2端点:url(r'^ o /',include( oauth2_endpoint_views,namespace =“ oauth2_provider”)),url(r'^ api / hello',ApiEndpoint.as_view()),#示例资源端点]。这将产生与您提到的相同的错误。
Koji D'infinte

1
元组语法对我不起作用,仅当我更改(版本为)reviews.url中的app_name变量时才起作用django 2.1
赫伯特

用例是什么?我的项目中有很多包含的url,并且都具有相同的模式:path("the_app/", include(("app.urls", <name>), namespace=<the same name>))这很烦人。
user405205​​4

80

Django 1.11 +,2.0 +

您应该在要包含的网址文件中设置app_name

# reviews/urls.py  <-- i.e. in your app's urls.py

app_name = 'reviews'
     

然后,您可以按照执行方式将其包括在内。

另外,可能值得注意的是Django文档在这里https://docs.djangoproject.com/en/1.11/ref/urls/#include所说的内容:

从1.9版开始不推荐使用:不支持app_name参数,并且在Django 2.0中将其删除。按照URL名称空间中的说明指定app_name,并改为包含URLconfs。

https://docs.djangoproject.com/zh-CN/1.11/topics/http/urls/#namespaces-and-include


32

在Django 2.0中,您应该在urls.py中指定app_name,而不必在include上指定app_name参数。

主网址文件。

from django.contrib import admin
from django.urls import path, include

urlpatterns = [
    path('', include('apps.main.urls')),
    path('admin/', admin.site.urls),
]

包含网址。

from django.urls import path
from . import views

app_name = 'main_app'

urlpatterns = [
    path('', views.index, name='index'),
]

然后在模板中使用use作为

<a href="{% url main_app:index' %}"> link </a>

更多详细信息:https : //code.djangoproject.com/ticket/28691 Django 2.0 Docs


2
我想知道,app_name =“ main”的用途是什么?以及django如何使用此变量
Kanishk Tanwar

4

我包括了一个不(完全)与django 2.1兼容的库(django_auth_pro_saml2)。因此,我创建了第二个文件saml_urls.py

from django_saml2_pro_auth.urls import urlpatterns

app_name = 'saml'

这样我可以将URL包括为:

from django.urls import include, re_path as url

urlpatterns = [
    ..., url(r'', include('your_app.saml_urls', namespace='saml')), ...
]

哈基,但对我有用,而url(r'^reviews/', include(('reviews.urls', 'reviews'), namespace='reviews'))没有。


0

我在Django 2.2中也遇到相同的错误,我以这种方式解决了

urls.py文件

urlpatterns = [
   path('publisher-polls/', include('polls.urls', namespace='publisher-polls')),
]

polls / urls.py文件

app_name = 'polls'
urlpatterns = [
  path('', views.IndexView.as_view(), name='index')
]

在基于Calss的视图方法中使用名称空间的示例

def get_absolute_url(self):
    from django.urls import reverse
    return reverse('polls.index', args=[str(self.id)])

在模板中使用名称空间的示例

{% url 'polls:index' %}

这里的polls:index表示app_name [在polls / urls.py文件中定义]:name [ 在path函数内的polls / urls.py文件中定义]

他们的官员,这很好,你可以检查更多的信息namespace_django_official_doc


-6

就我而言,我是在urlpatterns列表之外编写url。请仔细检查。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.