Object of type 'ObjectId' is not JSON serializable

it2022-05-05  119

从 mongo 中直接将查到的数据 dumps 导出,报错: 

Object of type 'ObjectId' is not JSON serializable

解决方法:

from bson import json_util json_util.dumps(data)

 


最新回复(0)