flask 学习(二)
Posted hanzhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flask 学习(二)相关的知识,希望对你有一定的参考价值。
安装了flask扩展
以及flask-bootstrap
默认情况下,flask在template文件夹寻找模板。
flask 加载的是Jinja2模板,该模板引擎在flask中由函数render_template集成
所以在文件中这样渲染模板
from flask import Flask,render_template #... @app.route(\'/\') def index(): return render_template(\'index.html\') @app.route(\'/user/<name>\') def user(name): return render_template(\'user.html\', name=name)
其中:
模板中变量用双中括号{{ xxx }}表示;
控制结构是中括号加百分号{% xxx %}表示,一般是这样的
{% if %}...{% else %}...{% endif %}
{% for ...%}...{% endfor %}
以上是关于flask 学习(二)的主要内容,如果未能解决你的问题,请参考以下文章