热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

python3flask开发04

QQ群:476842922(欢迎加群讨论学习)1.我

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()

python3 flask开发04 - 文章图片



推荐阅读
author-avatar
诸葛二蛋
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有