190523-Python之json无法序列化部分类型数据问题解决方案

直接使用python的json库,实现对象和json串的互转,一般使用姿势也很简单,然而今天在使用的时候,需要序列化的对象中有datetime类型的对象,结果就抛出了异常TypeError: Object of type datetime is not JSON serializable

1
2
3
4
5
6
7
import json
result = {"hello": "你好", "name": "一灰灰blog"}
str_json = json.dumps(result)
print(str_json)

j_res = json.loads(str_json)
print(j_res)
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×