1.flask返回静态文件
在py文件目录下建立static文件夹,内放置静态文件,调用代码如下
return app.send_static_file(‘file.html‘)
其中file.html的真实路径为/static/file.html
2.flask返回模板文件
在py文件目录下建立templates文件夹,内放置静态文件,调用代码如下
return render_template(‘graph.html‘)
模板可以是一般的html文件,graph.html的路径为/templates/graph.html
原文地址:https://www.cnblogs.com/trickofjoker/p/11043774.html
时间: 2024-11-09 10:19:50