Django Python UnicodeDecodeError 序号不在范围内(128)

发布于 2024-12-05 08:52:46 字数 344 浏览 1 评论 0原文

我收到错误:

('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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦毁影碎の 2024-12-12 08:52:46

正确的语法应该是:{{ project.0 }}

The correct syntax should be: {{ project.0 }}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文