Beim Versuch, eine Django Template-Datei in Google App Engine zu rendernGoogle App Engine Vorlage Unicode-Dekodierung Problem
from google.appengine.ext.webapp import template
templatepath = os.path.join(os.path.dirname(file), 'template.html')
self.response.out.write (template.render(templatepath , template_values))
stoße ich auf dem folgenden Fehler:
<type 'exceptions.UnicodeDecodeError'>: 'ascii' codec can't decode byte 0xe2 in position 17692: ordinal not in range(128)
args = ('ascii', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Str...07/a-beautiful-method-to-find-peace-of-mind/ -->
', 17692, 17693, 'ordinal not in range(128)')
encoding = 'ascii'
end = 17693
message = ''
object = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Str...07/a-beautiful-method-to-find-peace-of-mind/ -->
reason = 'ordinal not in range(128)'
start = 17692
Es scheint, dass die zugrunde liegende django Vorlage Engine hat die "ascii" -Codierung angenommen, die "utf-8" hätte sein sollen. Wer weiß, was das Problem verursacht und wie es gelöst werden kann? Danke.
Was ist der Wert von DEFAULT_CHARSET? könnte helfen. –
lavinio