Marshalling/Encoder 就是將python 的資料物件轉換為json 字串,使用json.dumps ... def object2dict(obj): d = {} if isinstance(obj, list): return ...
確定! 回上一頁