渲染时捕获 UnicodeDecodeError:“utf8”编解码器无法解码位置 0 中的字节 0xd0:数据意外结束
有一天,当我想进入 django admin 时,由于这个错误,我无法做到这一点。我不记得我做了什么,也没有注意到,当这个错误开始出现时......
这里'完整的回溯:http: //dpaste.com/418718/
对不起我的英语
Some day, when i wanted to enter django admin, i couldn't do this, because of this error. I dont remember what i've done, and dont notice, when this error start to appear..
here' full traceback: http://dpaste.com/418718/
Sorry for my english
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
数据库字段对于其中的数据来说太小,并且在插入时会默默地截断它。您需要手动修复数据,并扩大字段。
The database field is too small for the data in it, and silently truncated it on insertion. You'll need to repair the data by hand, and make the field larger as well.
从 Mysql 表读取数据时出现此错误。数据库有一些 latin1 格式的字段。将它们转换为 utf8 格式有帮助。
I got this error when reading data from a Mysql table. The database had some fields in latin1 format. Converting them to utf8 format helped.