django 上传图像编码问题

发布于 2024-10-18 22:33:43 字数 541 浏览 1 评论 0原文

我在保存带有瑞典字符的图像时遇到一些问题,例如 ö å ö

我收到以下内容的回溯

Request Method: POST
Request URL:    http://localhost:8000/admin/project/project/41/
Exception Type: KeyError
Exception Value:    ö
Exception Location: /System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py in quote, line 1216

......

/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py in quote
res = map(safe_map.__getitem__, s) 

有人可以提供一些建议为什么会发生这种情况,以及如何解决此问题吗?

非常感谢您的反馈。

I have some issues with saving images with swedish characters such as ö å ö

I am getting a traceback of the following

Request Method: POST
Request URL:    http://localhost:8000/admin/project/project/41/
Exception Type: KeyError
Exception Value:    ö
Exception Location: /System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py in quote, line 1216

......

/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py in quote
res = map(safe_map.__getitem__, s) 

Can anyone give some advice why this is happening, and how I can resolve this issue?

your feedback is much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夜访吸血鬼 2024-10-25 22:33:43

我在上传之前使用 pythons Unicode 对文件进行解码。

我学到的一件事是,始终在编码之前进行解码。

I used pythons Unidecode to decode the file before upload.

One thing I've learned, always decode before encoding.

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