我试图在 python 中将 thrift 对象转换为 json。
如果我尝试使用json.dumps(thriftObj)
,它会失败并显示以下内容:
TypeError: MyThriftObj(...) is not JSON serializable
我尝试使用默认功能修复它:
json.dumps(thriftObj, default=lambda x: x.__dict__)
这在某些情况下有效,但在其他情况下我收到错误: AttributeError: 'DictProxy' object has no attribute '__dict__'
如何将有效的节俭对象转换为 json?
长风秋雁
慕勒3428872
相关分类