【后端】Flask
长期更新,建议关注收藏点赞!
实例1
Jinja2 是 Flask 和 Django 使用的 模板引擎,它允许你在 HTML 中嵌入 Python 代码,以动态生成页面内容。Jinja2 语法类似于 Django 模板,并支持变量、条件判断、循环、过滤器等。
from flask import Flask, render_template
app = Flask(__name__)
#@app.route('/') 是路由装饰器,定义访问时执行的函数,这里即index。
@app.route('/')
def index():
return render_template("index.html")
#render_template()是Flask提供的函数用于加载HTML模板文件(存放在templates 目录下)。
#render_template("index.html") 让 Flask 查找 templates/index.html 并返回给浏览器。
return render_template("index.html", title="首页", message="欢迎来到 Flask") #配合.html文件
'''
<head>
<title>{{ title }}</title>
</head>
<body>
<h1>{{ message }}</h1>
</body>
'''
@app.route('/')
def index():
users = ["Alice", "Bob", "Charlie"]
return render_template("index.html", users=users)
'''Jinja2 模板语法
{% ... %}:表示 Jinja2 代码块,里面可以写 Python 代码,比如 for 循环、if 判断等。{% endfor %}结束循环
<ul>
{% for user in users %}
<li>{{ user }}</li>
{% endfor %}
</ul>
'''
if __name__ == "__main__":
app.run(debug=True) # 启动 Flask 服务器