码迷,mamicode.com
首页 > Web开发 > 详细

flask之模板呈现html文件

时间:2020-05-26 12:32:45      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:htm   template   示例   http   src   templates   span   image   render   

  在flask中可以通过render_template()函数呈现html文件。

  需要呈现的html文件存放在templates文件夹中:

技术图片

 

 

   技术图片

 

  代码示例:

 

from flask import Flask, render_template

app = Flask(__name__)


@app.route(/<name>)
def hello_world(name):
    #return ‘Hello World! %s‘%name
    return render_template(hello.html, name=name)

if __name__ == __main__:
    app.run()

 

 

flask之模板呈现html文件

标签:htm   template   示例   http   src   templates   span   image   render   

原文地址:https://www.cnblogs.com/weim-123/p/12964384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!