我有一个非常简单的结构:
run.py
app/
__init__.py
classes/
__init__.py
templates/
index.html
utilities/
__init__.py
controllers/
api.py
__init__.py
所以我通过run.py
运行我的应用程序,它将调用api.py,这是我已经建立了蓝图的位置,方法调用了render_template。
api.py
def home():
return render_template("index.html")
,并且找不到index.html。
当我阅读时,是说 templates 目录必须是同级目录。不过,这对我来说似乎没有任何意义。
我应该如何使模板呈现?