import json
class Who:
def __init__(self, name, age):
self.name = name
self.age = age
def encode_who(w):
if isinstance(w, Who):
return w.__dict__
else:
raise TypeError(w.__class__.__name__ + ' is not JSON serializable')
some_man = Who('John Doe', 42)
print(json.dumps(some_man, default=encode_who))#为什么这里的encode_who function 不带一个参数
第二段
import json
class Who:
def __init__(self, name, age):
self.name = name
self.age = age
class MyEncoder(json.JSONEncoder):
def default(self, w):
if isinstance(w, Who):
return w.__dict__
else:
return super().default(self, z)
some_man = Who('John Doe', 42)
print(json.dumps(some_man, cls=MyEncoder))
这2段代码出的output是一样的,但里面的代码有些不同,是不是继承json.JSONEncoder class里的default method等同于
raise TypeError的作用,还有一个提问在注释里