python 把json数据保存到mysql数据库时信息中文变成乱码/unicode
发布时间:2020-12-12 02:25:17 所属栏目:MySql教程 来源:网络整理
导读:如:{"电影":"阿凡达"}写入到数据库变成{'xe7x94xb5xe5xbdxb1': 'xe9x98xbfxe5x87xa1xe8xbexbe'} 使用的办法 temp_dict={"电影":"阿凡达"}import?jsontemp_dict=json.dumps(temp_dict)写入数据库 实际结果是: {'xe7x94xb5xe5xbdxb1':
如:{"电影":"阿凡达"}写入到数据库变成{'xe7x94xb5xe5xbdxb1': 'xe9x98xbfxe5x87xa1xe8xbexbe'} 使用的办法 temp_dict={"电影":"阿凡达"} import?json temp_dict=json.dumps(temp_dict) 写入数据库 实际结果是: {'xe7x94xb5xe5xbdxb1': 'xe9x98xbfxe5x87xa1xe8xbexbe'} 解决办法 temp_dict={"电影":"阿凡达"} import?json temp_dict=json.dumps(temp_dict,ensure_ascii=False) 写入数据库 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容