博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
django加载模板文件
阅读量:6420 次
发布时间:2019-06-23

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

          views.py中编写相关代码

  • 第一种加载方式
from django.http import HttpResponse from django.template import loader,Context def index(req):     #生成模板对象     t=loader.get_template("index.html")     #生成Context对象     context = Context({"title":"hello world","name":"JohnRey"})
return HttpResponse(t.render(context));
  • 第二种加载方式
from django.shortcuts import render_to_response
def index(req):     return render_to_response("index.html",{"title":"hello world","name":"JohnRey"})

转载于:https://www.cnblogs.com/Yellow0-0River/p/5425161.html

你可能感兴趣的文章
SQL PATINDEX 详解
查看>>
一些常用的网络命令
查看>>
CSP -- 运营商内容劫持(广告)的终结者
查看>>
DIV+CSS命名规范有助于SEO
查看>>
js生成二维码
查看>>
C指针练习
查看>>
web项目buildPath与lib的区别
查看>>
php对redis的set(集合)操作
查看>>
我的友情链接
查看>>
ifconfig:command not found的解决方法
查看>>
js使用正则表达式判断手机和固话格式
查看>>
计算机是怎么存储数字的
查看>>
Codeforces Round #369 (Div. 2) A. Bus to Udayland 水题
查看>>
adb上使用cp/mv命令的替代方法(failed on '***' - Cross-device link解决方法)
查看>>
C++标准库简介、与STL的关系。
查看>>
Spring Boot 3 Hibernate
查看>>
查询EBS请求日志的位置和名称
查看>>
大型机、小型机、x86服务器的区别
查看>>
J2EE十三个规范小结
查看>>
算法(第四版)C#题解——2.1
查看>>