在Django中使用模板
class HelloWorldView(TemplateView):
template_name = 'hello.html'
在`template_name`中指定模板的名称。模板的位置在`settings.py`中进行指定。
BASE_DIR = Path(__file__).resolve().parent.parent
manage.py所在的目录,是settings.py文件路径的父文件夹的父文件夹。
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [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',
],
},
},
]
在”DIRS”部分,指定了BASE_DIR中的templates文件夹。
from django.contrib import admin
from django.urls import path
from .views import helloworldfunction, HelloWorldView
urlpatterns = [
path('admin/', admin.site.urls),
path('helloworld/', helloworldfunction),
path('helloworld2/', HelloWorldView.as_view()),
]
对于类,需要编写 as_view() 方法。