我的编程空间,编程开发者的网络收藏夹
学习永远不晚

怎么解决关于Python dict存中文字符dumps()的问题

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

怎么解决关于Python dict存中文字符dumps()的问题

本篇内容主要讲解“怎么解决关于Python dict存中文字符dumps()的问题”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么解决关于Python dict存中文字符dumps()的问题”吧!

Background

之前数据库只区分了Android,IOS两个平台,游戏上线后现在PM想要区分国服,海外服,港台服。这几个字段从前端那里的接口获得,code过程中发现无论如何把中文的value丢到dict中存到数据库中就变成类似这样**"\u56fd\u670d"**

Solution

首先怀疑数据库编码问题,但看了一下数据库其他字段有中文格式的,所以要先check数据库(MySQL)的字符编码。

怎么解决关于Python dict存中文字符dumps()的问题

可以看到明明就TMD是utf-8啊,所以一定不是数据库层出现的问题,回到代码debug

Google一下
这个问题好多都是Python2的解决方案,找到了一个感觉靠谱点的

dict1 = {'name':'张三'}print(json.dumps(dict1,encoding='utf-8',ensure_ascii=False))

博客中的解法,但是我的Python版本是3.9,就会报Error如下

Exception in thread Thread-1:Traceback (most recent call last):  File "/usr/local/python3/lib/python3.9/threading.py", line 950, in _bootstrap_inner    self.run()  File "/usr/local/python3/lib/python3.9/threading.py", line 888, in run    self._target(*self._args, **self._kwargs)  File "/home/dapan_ext/project_table.py", line 91, in http_request    self.get_data(project_response_data)  File "/home/dapan_ext/project_table.py", line 115, in get_data    json.dumps(dict_1, encoding='utf-8', ensure_ascii=False)  File "/usr/local/python3/lib/python3.9/json/__init__.py", line 234, in dumps    return cls(TypeError: __init__() got an unexpected keyword argument 'encoding'

意思就是:在__init__json这个东东的时候它不认识'encoding'这个argument。

那就翻阅源码康康->->:

def dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True,        allow_nan=True, cls=None, indent=None, separators=None,        default=None, sort_keys=False, **kw):    """Serialize ``obj`` to a JSON formatted ``str``.    If ``skipkeys`` is true then ``dict`` keys that are not basic types    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped    instead of raising a ``TypeError``.    If ``ensure_ascii`` is false, then the return value can contain non-ASCII    characters if they appear in strings contained in ``obj``. Otherwise, all    such characters are escaped in JSON strings.    If ``check_circular`` is false, then the circular reference check    for container types will be skipped and a circular reference will    result in an ``OverflowError`` (or worse).    If ``allow_nan`` is false, then it will be a ``ValueError`` to    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``) in    strict compliance of the JSON specification, instead of using the    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).    If ``indent`` is a non-negative integer, then JSON array elements and    object members will be pretty-printed with that indent level. An indent    level of 0 will only insert newlines. ``None`` is the most compact    representation.    If specified, ``separators`` should be an ``(item_separator, key_separator)``    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,    you should specify ``(',', ':')`` to eliminate whitespace.    ``default(obj)`` is a function that should return a serializable version    of obj or raise TypeError. The default simply raises TypeError.    If *sort_keys* is true (default: ``False``), then the output of    dictionaries will be sorted by key.    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the    ``.default()`` method to serialize additional types), specify it with    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.    """    # cached encoder    if (not skipkeys and ensure_ascii and        check_circular and allow_nan and        cls is None and indent is None and separators is None and        default is None and not sort_keys and not kw):        return _default_encoder.encode(obj)    if cls is None:        cls = JSONEncoder    return cls(        skipkeys=skipkeys, ensure_ascii=ensure_ascii,        check_circular=check_circular, allow_nan=allow_nan, indent=indent,        separators=separators, default=default, sort_keys=sort_keys,        **kw).encode(obj)

注意到这里:

If ``ensure_ascii`` is false, then the return value can contain non-ASCII
    characters if they appear in strings contained in ``obj``. Otherwise, all
    such characters are escaped in JSON strings.

意思就是:
ensure_ascii置为false时,返回值就可以返回非ASCII编码的字符,这岂不正是我们需要的,Got it!

回去改代码:

server_name = str(related['name'])# print(server_name)dict_1 = {'appKey': related['appKey'], 'client': related['client'], 'name': server_name}crasheye.append(dict_1)crasheyes = json.dumps(crasheye, ensure_ascii=False)

完美解决问题(●ˇ∀ˇ●)

怎么解决关于Python dict存中文字符dumps()的问题

到此,相信大家对“怎么解决关于Python dict存中文字符dumps()的问题”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

怎么解决关于Python dict存中文字符dumps()的问题

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

怎么解决关于Python dict存中文字符dumps()的问题

本篇内容主要讲解“怎么解决关于Python dict存中文字符dumps()的问题”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么解决关于Python dict存中文字符dumps()的问题”
2023-06-25

php截取中文字符串的问题怎么解决

本篇内容主要讲解“php截取中文字符串的问题怎么解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“php截取中文字符串的问题怎么解决”吧!PHP是一款广泛使用的编程语言,在开发网站与应用程序上有
2023-07-05

怎么解决Python字符串替换的问题

本篇内容主要讲解“怎么解决Python字符串替换的问题”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么解决Python字符串替换的问题”吧!项目中遇到一个字符串替换的问题。我们知道字符串替换可
2023-06-16

Python随机验证码生成和join字符串的问题怎么解决

这篇文章主要介绍“Python随机验证码生成和join字符串的问题怎么解决”,在日常操作中,相信很多人在Python随机验证码生成和join字符串的问题怎么解决问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”P
2023-06-30

怎么解决PHP7中对十六进制字符串处理的问题

这篇文章主要讲解了“怎么解决PHP7中对十六进制字符串处理的问题”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么解决PHP7中对十六进制字符串处理的问题”吧!具体问题:$t1 = 0x3F
2023-06-25

Mysql逗号拼接字符串的关联查询及统计问题怎么解决

这篇“Mysql逗号拼接字符串的关联查询及统计问题怎么解决”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Mysql逗号拼接字
2023-03-09

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录