以前有人问过这个问题,但似乎没有得到回答。所以我又问了一遍。
在带有 python 的 Google App Engine 上,我的应用程序根目录下有两个目录:/templates
和/static/files
. 假设base.html
在/templates
其中,它包含以下模板语句:
{% include "privacy.html" %}
privacy.html
如果文件也在目录中,则上述语句将起作用/templates
。但是,如果privacy.html
移动到 directory /static/files
,以下语句将不起作用(不包含任何内容):
{% include "/static/files/privacy.html" %}
为什么以及如何解决问题?谢谢。