在Django应用中连续查看当前时间,可以通过以下步骤实现:
from datetime import datetime
def current_time(request):
current_time = datetime.now()
return render(request, 'current_time.html', {'current_time': current_time})
<!DOCTYPE html>
<html>
<head>
<title>Current Time</title>
</head>
<body>
<h1>Current Time: {{ current_time }}</h1>
</body>
</html>
from django.urls import path
from .views import current_time
urlpatterns = [
path('current-time/', current_time, name='current_time'),
]
现在,当访问/current-time/
路径时,Django应用将会调用current_time
视图函数,并将当前时间传递给模板文件进行显示。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)和腾讯云数据库(TencentDB)。
领取专属 10元无门槛券
手把手带您无忧上云