TypeError:必须使用JSONDecoder实例作为第一个参数调用unbound方法decode()(改为使用PrintJson实例)
当我尝试将python对象解析为json时,我收到此错误。
使用以下代码:
import json
from json import JSONDecoder
class TestJson():
name = None
pass
printJson = PrintJson()
print printJson
print JSONDecoder.decode(printJson) // at this line, getting this error
答案 0 :(得分:2)
这是因为您正在JSONDecoder类上调用该方法,而不是在它的实例上调用该方法。这可行:
from json import JSONDecoder()
JSONDecoder().decode('{}')