我在做Django把SQLite数据库转换为Mysql数据库,运行代码:python manage.py loaddata data.json后报错:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcd in position 1867: invalid continuation byte。
通过代码查看到这个编码为GB2312.如何解决这个问题呢?以及如何在django中将sqlite换成mysql数据库!万分感谢!
大概率是因为json文件里含有中文,可以把json另存一下,编码格式转成utf-8试试。
mysql数据库要调成utf-8,具体自己百度吧。