在使用Flask时如何创建模板文件夹?

时间:2013-02-28 05:18:54

标签: python frameworks web flask

http://flask.pocoo.org/docs/quickstart/#a-minimal-application

当"渲染模板"下的说明指导您创建模板文件夹,您究竟在哪里创建它?在你的项目目录中?如何?谢谢!

1 个答案:

答案 0 :(得分:2)

如果你在粘贴的链接中读了一下,你会发现:

  

Flask将在templates文件夹中查找模板。所以,如果你的   application是一个模块,这个文件夹就在那个模块旁边,如果它是a   打包它实际上在你的包装内:

     

案例1:模块:

 /application.py
 /templates
     /hello.html
  

案例2:一揽子计划:

 /application
     /__init__.py
     /templates
         /hello.html

最常见的是案例1 - 您只需创建一个名为templates的目录并在其中添加模板。没什么特别的。