http://flask.pocoo.org/docs/quickstart/#a-minimal-application
当"渲染模板"下的说明指导您创建模板文件夹,您究竟在哪里创建它?在你的项目目录中?如何?谢谢!
答案 0 :(得分:2)
如果你在粘贴的链接中读了一下,你会发现:
Flask将在templates文件夹中查找模板。所以,如果你的 application是一个模块,这个文件夹就在那个模块旁边,如果它是a 打包它实际上在你的包装内:
案例1:模块:
/application.py
/templates
/hello.html
案例2:一揽子计划:
/application
/__init__.py
/templates
/hello.html
最常见的是案例1 - 您只需创建一个名为templates
的目录并在其中添加模板。没什么特别的。