flask框架jinja2模板与模板继承实例分析
技术  /  管理员 发布于 8年前   290
本文实例讲述了flask框架jinja2模板与模板继承。分享给大家供大家参考,具体如下:
jinja2模板
from werkzeug.contrib.cache import SimpleCachefrom flask import Flask, request, render_template,redirect,abort, url_forCACHE_TIME = 300cache = SimpleCache()cache.timeout = CACHE_TIMEapp = Flask(__name__)@app.before_requestdef return_cached(): if not request.values: response = cache.get(request.path) if response: print("Got the page from cache!") return response print("Will load the page!")@app.after_requestdef cache_response(response): print("aaaaaaaaaaaaaaaaaaaaaa") if not request.values: cache.set(request.path, response, CACHE_TIME) return [email protected]_requestdef teardown_request(response): print('llllllllllllllllllllllll') return "llllllllllllllllllllll"# @app.route('/')@app.route('/get_index')def index(): return render_template('jinja2.html', a_variable="Developer", navigation=["http://www.163.com", "www.baidu.com"])if __name__ == '__main__': app.run(port=8000)jinja2.html必须在templates文件夹下,例子如下:
<!DOCTYPE html><html><head> <title>jinja2_test</title></head><body> <ul id="navigation"> {% for item in navigation %} #表达式 <li href='https:/article/{{ item }}'>{{ item }}</li> #输出变量 {% endfor %} </ul> <h1>HelloWorld</h1> {{a_variable}}#输出变量 {# aaaa #}#模板注释,加载自动删除</body></html>jinja2模板继承
父亲:
<!DOCTYPE html><html><head> <title>模板继承</title></head><body> <span>这是基模板</span> <div id="content">{% block content %}{% endblock %}</div></body></html>用{% block content %}{% endblock %}包含jinja2的字模板块;
子:
<!DOCTYPE html><html><head> <title>模板继承</title></head><body> {% extend "jinja2_模板继承.html"%} {% block content %} <p class="importtant">我在子模板</p></body></html>{% extends "jinja2_模板继承.html"%}标签是这里的关键,告诉模板引擎这个模板继承自另外一个模板。该标签必须是子模板的第一个标签,解释器会自动将父亲的内容复制到子模板中!
结果应该是这样:
<!DOCTYPE html><html><head> <title>模板继承</title></head><body> <span>这是基模板</span> <div id="content"> <p class="importtant">我在子模板</p> </div></body></html>
希望本文所述对大家基于flask框架的Python程序设计有所帮助。
test1 在
opencode + Oh-my-openagent,我的第一个免费的ai编程智能体管家:Sisyphus中评论 test..122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..Zita 在
Google AI Studio升级全栈 vibe coding体验,可直接构建带登录和数据库的应用中评论 111222..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号
