有没有办法在不使用自定义编码器的情况下序列化 python 类?我尝试了以下方法,但出现错误:TypeError: hello is not JSON serializable 这很奇怪,因为“hello”是一个字符串。
class MyObj(object):
def __init__(self, address):
self.address = address
def __repr__(self):
return self.address
x = MyObj("hello")
print json.dumps(x)
输出应该很简单
"hello"