作者:诸葛二蛋 | 来源:互联网 | 2023-10-13 06:20
QQ群:476842922(欢迎加群讨论学习)
1.我们把包含变量和运算逻辑的 HTML 或其他格式的文本叫做模板,执行这些变量替换和逻辑计算工作的过程被称为渲染。
2.按照默认的设置,Flask 会从程序实例所在模块同级目录的 templates 文件夹中寻找模板
根目录下新建templates文件夹新建index.html文件
QQ群:476842922(欢迎加群讨论学习)
{{ name }}'s Watchlist
{# 使用 length 过滤器获取 movies 变量的长度 #}
{{ movies|length }} Titles
{% for movie in movies %} {# 迭代 movies 变量 #}
- {{ movie.title }} - {{ movie.year }}
{# 等同于 movie['title'] #}
{% endfor %} {# 使用 endfor 标签结束 for 语句 #}
根目录下新建app.py文件
from flask import Flask, render_template
app = Flask(__name__)
name = 'Grey Li'
movies = [
{'title': 'My Neighbor Totoro', 'year': '1988'},
{'title': 'Dead Poets Society', 'year': '1989'},
{'title': 'A Perfect World', 'year': '1993'},
{'title': 'Leon', 'year': '1994'},
{'title': 'Mahjong', 'year': '1996'},
{'title': 'Swallowtail Butterfly', 'year': '1996'},
{'title': 'King of Comedy', 'year': '1999'},
{'title': 'Devils on the Doorstep', 'year': '1999'},
{'title': 'WALL-E', 'year': '2008'},
{'title': 'The Pork of Music', 'year': '2012'},
]
@app.route('/')
def index():
return render_template('index.html', name=name, movies=movies)
if __name__ == '__main__':
app.run()