django.template.exceptions.TemplateDoesNotExist: rest_framework/api.html

使用restframework 报错
django.template.exceptions.TemplateDoesNotExist: rest_framework/api.html

django.template.exceptions.TemplateDoesNotExist: rest_framework/api.html_第1张图片

解决方案

  1. 在 settings.py 中注册rest_framework
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'rest_framework',
    'Account',
    'Shopping',
    'Course',
]
  1. 在settings.py 中的 TEMPLATES中的 APP_DIRS 设置为 True
TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

你可能感兴趣的:(django.template.exceptions.TemplateDoesNotExist: rest_framework/api.html)