重用json模块中类的方法并派生出新的功能

重用json模块中类的方法并派生出新的功能[Python常见问题]

  继承json模块,重用模块中类的方法并派生出新的功能

 

  例:使用json模块序列化字符串

import json
from datetime import datetime, date

dict1 = {
    # "time1": str(datetime.now())
    "time1": datetime.now(),
    "name": "orange"
}

res = json.dumps(dict1)
# 无法序列datetime.now()格式,报错
print(res)    # TypeError: Object of type datetime is not JSON serializable
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 重用json模块中类的方法并派生出新的功能