django之创建第4-1个项目-访问dict数据
Posted Xiao|Deng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django之创建第4-1个项目-访问dict数据相关的知识,希望对你有一定的参考价值。
1、修改index.html文件
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>django之创建第四个项目</title> </head> <body> <h1>hello,{{test.name}}</h1> <!--模板 变量用变量定义--> <h1>hello,{{test.sex}}</h1> <h1>hello,{{test.where}}</h1> </body> </html>
2、修改views.py文件
# Create your views here. #coding:utf-8 from django.http import HttpResponse #导入templates文件所需导入库 from django.template import loader,Context def index(request): #加载器,加载模板 t=loader.get_template("index.html") #django之创建第4-1个项目-Dict形式 user={"name":"xiaodeng","sex":"male","where":"EnShi"} c=Context({"test":user})#在这里test位变量,user为变量的值,接收user这个字典数据 return HttpResponse(t.render(c))
3、百度云盘:http://pan.baidu.com/s/1mi1X8Mk
以上是关于django之创建第4-1个项目-访问dict数据的主要内容,如果未能解决你的问题,请参考以下文章
django之创建第4-2个项目-访问class类属性和类方法