python修改字典中时间key的属性,将datatime格式化后返回给前端,解决datatime返回的时间中有T的问题

python修改字典中时间key的属性,将datatime格式化后返回给前端
解决datatime返回的时间中有T的问题,例如:2022-01-22T14:05:57

两种方案:
一、
dict1["create_time"] = dict1.pop("create_time").strftime("%Y-%m-%d %H:%M:%S")
二、
dict1.update({'create_time': dict1.pop('create_time').strftime("%Y-%m-%d %H:%M:%S")})

参考文档 [1]: https://blog.csdn.net/weixin_43974889/article/details/112738712

上一篇:Docker装的Oracle 11g没有HR用户怎么办?一个脚本解决问题!


下一篇:关于 Property 'create' does not exist on type 'typeof import("axios") 的问题