python 简单的Django应用
2021-02-04 07:16
阅读:581
YPE html>
标签:定义 简单的 serve time() 定义函数 image you time creat
创建django
在django_lesson下的urls.py 添加路径
from django.contrib import admin from django.urls import path from blog import views urlpatterns = [ path(‘admin/‘, admin.site.urls), path(‘show_time/‘,views.show_time) ]
在migrations下的views.py里定义函数
from django.shortcuts import render,HttpResponse import time # Create your views here. def show_time(req): t = time.ctime() # return HttpResponse(‘hello‘) return render(req,‘index.html‘,{‘time‘:t})
在templates下新建html文件
{% load static %}Title hello {{ time }}
{##}
启动django 在Terminal下输入python manage.py runserver 8080
在浏览器上就可以看到如下
把网址修改一下就可以看到了
python 简单的Django应用
标签:定义 简单的 serve time() 定义函数 image you time creat
原文地址:https://www.cnblogs.com/hb15988111121/p/12796863.html
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python 简单的Django应用
文章链接:http://soscw.com/index.php/essay/50790.html
文章标题:python 简单的Django应用
文章链接:http://soscw.com/index.php/essay/50790.html
评论
亲,登录后才可以留言!