Django Python UnicodeDecodeError 序号不在范围内(128)
我收到错误:
('ascii', '[<Project: \xd0\x9f\xd0\xd0\xb8\xd1\x8f>]', 11, 12, 'ordinal not in range(128)')
我的模板只有以下代码:
{{project[0]}}
项目名称是保加利亚语。
Coda 可以告诉我,该视图的
#-*- coding: utf-8 -*-
文件本身是 UTF-8 编码。
是什么导致了这个问题,我该如何解决它?
I get the error:
('ascii', '[<Project: \xd0\x9f\xd0\xd0\xb8\xd1\x8f>]', 11, 12, 'ordinal not in range(128)')
my template has only the following code:
{{project[0]}}
the project name is in Bulgarian.
The view has
#-*- coding: utf-8 -*-
the file itself is UTF-8 encoding as much as Coda can tell me.
What is causing the problem, and how do I fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的语法应该是:
{{ project.0 }}
The correct syntax should be:
{{ project.0 }}