我有一个自定义类,让我们调用类ObjectA(),它有一堆函数,属性等等。我希望在python中使用标准的json库序列化对象,什么我是否必须实现此对象将序列化为JSON而无需编写自定义编码器?
谢谢
答案 0 :(得分:8)
子类json.JSONEncoder,然后构造一个合适的字典或数组。
参见"扩展JSONEncoder"在this link
之后像这样:
>>> class A: pass
...
>>> a = A()
>>> a.foo = "bar"
>>> import json
>>>
>>> class MyEncoder(json.JSONEncoder):
... def default(self, obj):
... if isinstance(obj, A):
... return { "foo" : obj.foo }
... return json.JSONEncoder.default(self, obj)
...
>>> json.dumps(a, cls=MyEncoder)
'{"foo": "bar"}'