博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
三、模版的使用
阅读量:5047 次
发布时间:2019-06-12

本文共 974 字,大约阅读时间需要 3 分钟。

1、创建模版文件

首先在Blog下创建templates文件夹

在里面新建一个index.html

内容如下

<pre>

<!DOCTYPE html>

<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
        <meta property="wb:webmaster" content="404d6a11b9f5a1be"/>
        <meta property="qc:admins" content="12423717776137740556375"/>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>
django study
</title>
</head>
<body>
<h1>welcome to my website,this is first!</h1>
</body>
</html>

<pre>

2、找到blog/views.py有2种方式修改

   1)

  

   新增引用 from django.template import loader,Context

      把def里内容修改一下

      def index(req):

  

    t=loader.get_template("index")

  

    c=Context({})

  

    return HttpResponse(t.render(c))

 

     2)

  把views.py内容清空

  引入from django_shortcuts import render_to_response

  def index(req):

    return render_to_response("index.html",{})

    

 

转载于:https://www.cnblogs.com/fengri/articles/django3.html

你可能感兴趣的文章
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
二叉树的遍历问题总结
查看>>
新浪分享API应用的开发
查看>>
爬取:中国大学排名
查看>>
聊天室(C++客户端+Pyhton服务器)_1.框架搭设
查看>>
mybatis中&gt;=和&lt;=的实现方式
查看>>
Python面向对象03/继承
查看>>
java序列化和反序列化
查看>>
绝对定位
查看>>
flink源码编译(windows环境)
查看>>
dpkg 删除 百度网盘 程序
查看>>
服务器nginx安装
查看>>
std::nothrow
查看>>
rest-framework 分页器
查看>>
JQuery(一)安装&选择器 样式篇
查看>>
浏览器的DNS缓存查看和清除
查看>>
浏览器跨域问题
查看>>
HTML5 input控件 placeholder属性
查看>>