使用“json.dumps”时 JSON 键顺序不一致
在 Python 中,JSON 转换通常需要利用“json.dumps”进行转换字典转换为 JSON 对象。但是,用户可能会遇到生成的 JSON 键顺序不一致的情况,预期序列(id、名称、时区)与实际输出(时区、id、名称)不同。
要解决此问题并强制执行所需的按键顺序,有两种方法可用:
1。利用“sort_keys”参数:
“sort_keys”参数设置为 True 时,将按字母顺序对 JSON 键进行排序。例如,以下代码片段将产生所需的按键顺序:
<code class="python">import json countries = [] countries.append({"id": 1, "name": "Mauritius", "timezone": 4}) countries.append({"id": 2, "name": "France", "timezone": 2}) countries.append({"id": 3, "name": "England", "timezone": 1}) countries.append({"id": 4, "name": "USA", "timezone": -4}) json_data = json.dumps(countries, sort_keys=True) print(json_data)</code>
2。使用 OrderedDict:
Python 的“collections.OrderedDict”保留键插入顺序。通过利用 OrderedDict,可以实现预期的键顺序:
<code class="python">from collections import OrderedDict countries = OrderedDict() countries["id"] = 1 countries["name"] = "Mauritius" countries["timezone"] = 4 json_data = json.dumps(countries) print(json_data)</code>
在 Python 3.6 及更高版本中,默认情况下保留关键字参数排序,允许更简洁的语法:
<code class="python">json_data = json.dumps(OrderedDict(id=1, name="Mauritius", timezone=4)) print(json_data)</code>
最后,对于 JSON 输入,“object_pair_hook”参数可用于保留对象顺序并生成 OrderedDict:
<code class="python">import json json_data = json.loads('{"id": 1, "name": "Mauritius", "timezone": 4}', object_pairs_hook=OrderedDict) print(json_data)</code>
以上是如何使用 Python 的 `json.dumps` 控制 JSON 键顺序?的详细内容。更多信息请关注PHP中文网其他相关文章!