需求
通过访问 http://localhost:8080/timer,能够获取到当前的时间。
实现步骤
第一步:新增templates/home/timer.html,不存在的目录则新建目录
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>当前时间</title>
</head>
<body>
<h1>{{ now }}</h1>
</body>
</html>
第二步:在main/settings.py中配置模板目录
python
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
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',
],
},
},
]
第三步:在home/views.py中定义视图函数
python
from django.shortcuts import render
import ztime
def timer(request):
context = {"now": ztime.now().format()}
return render(request, "home/timer.html", context)
第四步:安装这里用到的ztime依赖
bash
pip install zdppy_ztime-0.1.0.tar.gz
第五步:新增home/urls.py,定义timer对应的路由
python
from django.urls import path
from . import views
urlpatterns = [
path('timer', views.timer),
]
第六步:修改main/urls.py,挂载home目录下的子路由
python
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include("home.urls")),
]
第七步:启动服务
bash
python manage.py runserver 0.0.0.0:8080
第七步:浏览器访问 http://localhost:8080/timer