如何使用App Engine将html文件包含到模板中

时间:2014-09-24 19:04:29

标签: python django google-app-engine

我过去常常使用hedaer.html

在django项目中添加footer.html{% include 'header.html' %}等模板

我在我的App Engine项目中也做了同样的事情但得到了这个错误:

UnicodeDecodeError: 'utf8' codec can't decode byte 0xd7 in position 1294: invalid continuation byte

我想知道是否有办法在使用Python的App Engine模板中做到这一点?

使用UTF-8编码创建的html文件: enter image description here

1 个答案:

答案 0 :(得分:1)

确切地说,您是如何在模板中包含html文件的。该错误仅表示您尝试包含的html文件不是UTF-8有效。您需要做的就是在编辑器中将其重新保存为UTF-8。