html开启/关闭转义
1 打开转义1: 2 {% autoescape on %} 3 <div>{{data}}</div> 4 {% endautoescape %} 5 6 打开转义2: 7 <div>{{data}}</div> 8 9 关闭转义1: 10 {% autoescape off %} 11 <div>{{data}}</div> 12 {% endautoescape %} 13 14 关闭转义2: 15 <div>{{data | safe}}</div>
1 打开转义1: 2 {% autoescape on %} 3 <div>{{data}}</div> 4 {% endautoescape %} 5 6 打开转义2: 7 <div>{{data}}</div> 8 9 关闭转义1: 10 {% autoescape off %} 11 <div>{{data}}</div> 12 {% endautoescape %} 13 14 关闭转义2: 15 <div>{{data | safe}}</div>