django 上传图像编码问题
我在保存带有瑞典字符的图像时遇到一些问题,例如 ö å ö
我收到以下内容的回溯
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在上传之前使用 pythons Unicode 对文件进行解码。
我学到的一件事是,始终在编码之前进行解码。
I used pythons Unidecode to decode the file before upload.
One thing I've learned, always decode before encoding.