首页 > 其他 > 详细

Flask 框架

时间:2021-07-18 23:28:42      阅读:25      评论:0      收藏:0      [点我收藏+]
render_templates
渲染模板
* 模板放在 templates 文件夹下
* 从 flask 中导入 render_templates 函数
* 在视图函数中,使用render_templates,只需要写模板 名称.html ,不需要写路径
除非是在templates下在创建子目录就需要把路径补充,以templates为根目录
@app.route(/)
def hello_world():
    return render_template(index.html)

 

 

 



 

Flask 框架

原文:https://www.cnblogs.com/chen-jun552/p/15027968.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!