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

Flask - 模板引擎技术(模板继承)

时间:2018-01-09 23:14:01      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:lock   items   document   super   index   tle   内容   char   python   

模板继承

 // base.jinja2
1
<!doctype html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" 6 content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> 7 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 8 <title>Document</title> 9 </head> 10 <body> 11 Hello Python ! 12 <title> 13 {% block title %}1234{% endblock %} 14 </title> 15 16 {% block main %} 17 {% endblock %} 18 19 </body> 20 </html>

继承页面  (super()用于显示base.jinja2中原有的内容,这里为1234)

// index.jinja2
{% extends base.jinja2 %} {% block title -%} {{ super() }} Name: {{ name|title }} {%- endblock %} {% block main %} {% for item in items %} {{ item }} {% endfor %} {% endblock %}

 

后端业务测试代码

from flask import render_template
@app.route(/)
def index():
    return render_template(index.jinja2, name=bob, items=range(10))

 

Flask - 模板引擎技术(模板继承)

标签:lock   items   document   super   index   tle   内容   char   python   

原文地址:https://www.cnblogs.com/yugengde/p/8253975.html

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