python如何把json字符串转换成自定义的对象
class Result(object):
def __init__(self, code,message, response=[]):
self.code=code
self.message = message
self.response = response
这是json字符串:str: {"code":200,"message":"发送成功","response":[{"code":2,"message":"xxxxxxxx","mobile":"xxxxxx","taskId":null},{"code":2,"message":"xxxxxx","mobile":"xxxxxx","taskId":null}]}
으아악json.loads()
object_hook 추가
귀하의 질문을 읽어보니 object_hook이 필요하지 않습니다..
단순하고 투박한
으아악업데이트: 형식을 수정한 다음
response=[]
이런 방식의 작성은 권장하지 않습니다마지막으로 사용 가능한 결과는 다음과 같습니다.
으아악