码迷,mamicode.com
首页 > 其他好文 > 详细

第二十二节 with标签使用详解

时间:2020-03-08 23:16:35      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:使用   text   变量   div   contex   meta   标签   人生   har   

类似于python中的变量赋值

views.py 代码

1 from django.shortcuts import render,HttpResponse,redirect,reverse
2 
3 def index(request):
4     context = {
5         books:[林花谢了春红, 太匆匆, 无奈朝来寒雨, 晚来风, 胭脂泪, 相留醉, 几时重, 自是人生长恨水长东],
6     }
7     return render(request, index.html, context=context)

index.html 代码

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>模板渲染</title>
 6 </head>
 7 <body>
 8     <!-- 第一种写法  -->
 9     {% with a=books.0 %}
10     <!-- 等号两边不能有空格,定义的变量只能在with块中使用 -->
11         <p>{{ a }}</p>
12     {% endwith %}
13     <br>
14     <br>
15     <!-- 第二种写法  -->
16     {% with books.1 as b %}
17     <!-- 等号两边不能有空格,定义的变量只能在with块中使用 -->
18         <p>{{ b }}</p>
19     {% endwith %}
20 
21 </body>
22 </html>

 

第二十二节 with标签使用详解

标签:使用   text   变量   div   contex   meta   标签   人生   har   

原文地址:https://www.cnblogs.com/kogmaw/p/12445775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!