Django框架模板注入操作示例【变量传递到模板】

本文实例讲述了Django框架模板注入操作。分享给大家供大家参考,具体如下:

1.HTML模板如何解析变量?

这是一个html页面

id:{{ user_id }}

名字:{{ username }}

其中:{{变量名}}

2.如何传递数据到HTML模板上?

#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框架模板注入操作示例【变量传递到模板】_第1张图片

希望本文所述对大家基于Django框架的Python程序设计有所帮助。

你可能感兴趣的:(Django框架模板注入操作示例【变量传递到模板】)