本文实例讲述了Django框架模板注入操作。分享给大家供大家参考,具体如下:
1.HTML模板如何解析变量?
1
2
3
|
< h1 >这是一个html页面</ h1 > < p >id:{{ user_id }}</ p > < p >名字:{{ username }}</ p > |
其中:{{变量名}}
2.如何传递数据到HTML模板上?
1
2
3
4
5
6
7
|
#coding:utf-8 from django.shortcuts import render,render_to_response # Create your views here. from django.http import HttpResponse def hi(request): user = { 'user_id' : 1 , 'username' : '张三' , 'username' : '李四' } return render_to_response( "index.html" ,user) |
user是定义的字典,键可以重复,同名键值打印最后添加的
3.最后模板效果
希望本文所述对大家基于Django框架的Python程序设计有所帮助。
原文链接:https://blog.csdn.net/github_26672553/article/details/52462678