django 2.1 오류: Specifying a namespace in include () without providing an appname is not supported

3434 단어 django
django 2.1 오류: Specifying a namespace in include () without providing an appname is not supported
오류 메시지:
  File "I:\xx\urls.py", line 22, in 
    url('', include('system.urls', namespace='system-urls')),
  File "I:\xx\venv\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.

잘못된 코드:
urlpatterns = [
    url('', include('apps.urls', namespace='apps-urls')),
    ]

배경:
django == 2.1

잘못된 의미:
django.core.exceptions.ImproperlyConfigured:include()에서 이름 공간을 지정하는 것은 지원되지 않으며 appname. 포함된 모듈에 app 설정name 속성 또는 전송 모드 목록과 appname의 2원조.
원본 파일:
def include(arg, namespace=None):
    app_name = None
    if isinstance(arg, tuple):
        # Callable returning a namespace hint.
        try:
            urlconf_module, app_name = arg
        except ValueError:
            if namespace:
                raise ImproperlyConfigured(
                    'Cannot override the namespace for a dynamic module that '
                    'provides a namespace.'
                )
            raise ImproperlyConfigured(
                'Passing a %d-tuple to include() is not supported. Pass a '
                '2-tuple containing the list of patterns and app_name, and '
                'provide the namespace argument to include() instead.' % len(arg)
            )
    else:
        # No namespace hint - use manually provided namespace.
        urlconf_module = arg

    if isinstance(urlconf_module, str):
        urlconf_module = import_module(urlconf_module)
    patterns = getattr(urlconf_module, 'urlpatterns', urlconf_module)
    app_name = getattr(urlconf_module, 'app_name', app_name)
    if namespace and not app_name:
        raise 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.',
        )
    namespace = namespace or app_name
    # Make sure the patterns can be iterated through (without this, some
    # testcases will break).
    if isinstance(patterns, (list, tuple)):
        for url_pattern in patterns:
            pattern = getattr(url_pattern, 'pattern', None)
            if isinstance(pattern, LocalePrefixPattern):
                raise ImproperlyConfigured(
                    'Using i18n_patterns in an included URLconf is not allowed.'
                )
    return (urlconf_module, app_name, namespace)

상기 원본에서 보듯이include는 두 개의 매개 변수가 필요합니다.arg와namespace,namespace가 비어 있지 않을 때,arg 매개 변수는 반드시 2원 그룹이어야 합니다.urlpatterns가 비어 있을 수 없는 것을 제외하고appname도 반드시 기입해야 합니다.
해결 방법:
urlpatterns = [
    url('', include(('apps.urls', 'apps'), namespace='apps-urls')),
    ]

좋은 웹페이지 즐겨찾기