Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://flask.pocoo.org/docs/quickstart/#a-minimal-application
当“渲染模板”下的说明指示您创建模板文件夹时,您究竟是在哪里制作的?在您的项目目录中?如何?谢谢!
如果您在粘贴的链接中进一步阅读,您会发现:
Flask 将在模板文件夹中查找模板。因此,如果您的应用程序是一个模块,则此文件夹位于该模块旁边,如果它是一个包,则它实际上在您的包中: 案例1:一个模块:
Flask 将在模板文件夹中查找模板。因此,如果您的应用程序是一个模块,则此文件夹位于该模块旁边,如果它是一个包,则它实际上在您的包中:
案例1:一个模块:
/application.py /templates /hello.html
案例2:一个包:
/application /__init__.py /templates /hello.html
最常见的是案例 1 - 您只需创建一个名为的目录templates并在其中添加模板。没什么特别的。
templates