我正在为使用Jinja2模板的服务器使用Flask。
我想在其他模板中使用我的模板之一,并找到了include语句。因此,在file1中,我包括以下内容:
{% include 'file2.j2' %}
这会引发错误
jinja2.exceptions.TemplateNotFound: file2.j2
所以我尝试使用file2的绝对路径,这再次引发相同的错误。
我具有以下文件夹结构:
myproject
|- app.py
|- templates
|- file1.j2
|- file2.j2