码迷,mamicode.com
首页 > 编程语言 > 详细

python 简单的Django应用

时间:2020-04-28 20:18:28      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:定义   简单的   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文件

技术图片

 

 

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    {% load static %}
    <title>Title</title>
</head>
<body>

<h1>hello {{ time }} </h1>

{#<script src="/static/jquery-3.4.1.min.js"></script>#}
<script src="{% static "jquery-3.4.1.min.js" %}"></script>
<script>
    $(‘h1‘).css(‘color‘,‘red‘)
</script>

</body>
</html>

 启动django 在Terminal下输入python manage.py runserver 8080

   在浏览器上就可以看到如下

技术图片

 

把网址修改一下就可以看到了

    技术图片

 

python 简单的Django应用

标签:定义   简单的   serve   time()   定义函数   image   you   time   creat   

原文地址:https://www.cnblogs.com/hb15988111121/p/12796863.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!