0

我一直在尝试用我的手机用 django 创建一个博客,到目前为止,它一直是成功的。我昨天正在创建我的主页,当我运行 python manage.py runserver 它返回一个找不到模板的错误。可能是什么问题?

这是我的views.py


from django.shortcuts import render

# Create your views here.
def home(request):
 
       returnrender(request,'newfile.html')

这是我的urls.py

from django.urls import path
from . import views

urlpatterns = [
    
    path('', views.home, name="homepage"),

]

这是我的settings.py


"""

Django settings for myproject project.

Generated by 'django-admin startproject' using Django 3.2.7.

For more information on this file, see
https://docs.djangoproject.com/en/3.2/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
"""


import os


from pathlib import Path

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-@o12m78t3=13)@m-o^-ejlp@g!-0gz64fiwx%+raw753+=g2)r'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = 

[

    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'myapp',

]

MIDDLEWARE = [


    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',


]

ROOT_URLCONF = 'myproject.urls'

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',
            ],
        },
    },


]



我确保避免任何拼写错误或缩进错误。可能是什么问题?

4

1 回答 1

0

首先,您不应该在此处发布您的密钥。

比你在 def home(request) 中有一个拼写错误:

returnrender(request,'newfile.html')

如果这在您的本地项目上是正确的:

您的模板文件的路径是什么?应该是:myapp/template/myapp/home.html

于 2021-09-13T10:56:02.197 回答