上传带有非 ASCII 字符的文件时,我得到 UnicodeEncodeError:
Exception Type: UnicodeEncodeError at /admin/studio/newsitem/add/
Exception Value: 'ascii' codec can't encode character u'\xf8' in position 78: ordinal not in range(128)
查看完整的堆栈跟踪。
我用 MySQL 和 nginx 和 FastCGI 运行 Django 1.2。
这是根据Django Trac 数据库修复的问题,但我仍然有问题。欢迎任何有关如何修复的建议。
编辑:这是我的图像字段:
image = models.ImageField(_('image'), upload_to='uploads/images', max_length=100)