找不到烧瓶模板[重复]
Posted
技术标签:
【中文标题】找不到烧瓶模板[重复]【英文标题】:Flask Template Not found [duplicate] 【发布时间】:2016-01-28 12:32:14 【问题描述】:从flask实现一个简单的静态站点,但是浏览器说找不到模板,shell返回404
jinja2.exceptions.TemplateNotFound
TemplateNotFound: template.html
主要python代码:
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def template_test():
return render_template('template.html', my_string="Wheeeee!", my_list=[0,1,2,3,4,5])
if __name__ == '__main__':
app.run(debug=True)
我的文件结构如下:
flask_new_practice
|--template/
|--template.html
|--run.py
【问题讨论】:
【参考方案1】:默认情况下,Flask 会在您应用的根目录中查找 templates
文件夹。
http://flask.pocoo.org/docs/0.10/api/
template_folder – 包含模板的文件夹 由应用程序使用。默认为根目录中的“模板”文件夹 应用程序的路径。
所以你有一些选择,
-
将
template
重命名为templates
提供template_folder
参数,让烧瓶应用程序识别您的template
文件夹:
app = Flask(__name__, template_folder='template')
【讨论】:
以上是关于找不到烧瓶模板[重复]的主要内容,如果未能解决你的问题,请参考以下文章
PyInstaller 包烧瓶应用程序无法加载 Python 库,dlopen -> 找不到图像
在 gcloud 上部署烧瓶应用程序时出现“找不到 CMAKE_CXX_COMPILER”错误