您应该定义自己
JSONEnprer并使用它:
import jsonfrom bson import ObjectIdclass JSonEnprer(json.JSONEnprer): def default(self, o): if isinstance(o, ObjectId): return str(o) return json.JSONEnprer.default(self, o)JSonEnprer().enpre(analytics)
也可以按以下方式使用它。
json.enpre(analytics, cls=JSONEnprer)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)