模板标签 在传递数据的时候,会有大量的数据展示在浏览器上,而数据会是动态变化的,在html的编写中,数据也是需要动态的,而不能是写死的,如果动态展示呢. 给定的例子数据 views传递数据给html from django.shortcuts import render def index(request): students = [ {'id':12, 'name':'张三', 'age':19, 'sex':'男'} {'id':22, 'name':'李思', 'age':19, 'sex…