Chinaunix
标题:
请帮我看个python cookbook上的例子
[打印本页]
作者:
hmchzb19
时间:
2016-10-03 11:54
标题:
请帮我看个python cookbook上的例子
将一个object 转化成json, 然后将这个json 再转成object 的例子。
#--------------------------------------------
class Point:
def __init__(self, x, y):
self.x=x
self.y=y
def serialize_instance(obj):
d={'__classname__': type(obj).__name__}
d.update(vars(obj))
return d
#Dictionary mapping names to known classes
classes={
'Point':Point,
}
def unserialize_object(d):
clsname=d.pop('__classname__',None)
if clsname:
cls=classes[clsname]
obj=cls.__new__(cls) #make instance without calling __init__
for key, value in d.items():
setattr(obj, key, value)
return obj
else:
return d
import time
def put_together():
p=Point(2,3)
s=json.dumps(p, default=serialize_instance)
print(s)
a=json.loads(s, object_hook=unserialize_object)
print(a)
print(a.y)
print(a.x)
put_together()
复制代码
代码就是这样了,但是我实际运行中发现很奇怪的事情。
root@kali:/root/py# ./json_1.py
{"x": 2, "y": 3, "__classname__": "Point"}
<__main__.Point object at 0x7ff3d7876f98>
Traceback (most recent call last):
File "./json_1.py", line 114, in <module>
put_together()
File "./json_1.py", line 111, in put_together
print(a.y)
AttributeError: 'Point' object has no attribute 'y'
复制代码
作者:
jeppeter
时间:
2016-10-03 20:38
回复
1#
hmchzb19
#! python3
#--------------------------------------------
import sys
class Utf8Encode:
def __dict_utf8(self,val):
newdict =dict()
for k in val.keys():
newk = self.__encode_utf8(k)
newv = self.__encode_utf8(val[k])
newdict[newk] = newv
return newdict
def __list_utf8(self,val):
newlist = []
for k in val:
newk = self.__encode_utf8(k)
newlist.append(newk)
return newlist
def __encode_utf8(self,val):
retval = val
if sys.version[0]=='2' and isinstance(val,unicode):
retval = val.encode('utf8')
elif isinstance(val,dict):
retval = self.__dict_utf8(val)
elif isinstance(val,list):
retval = self.__list_utf8(val)
return retval
def __init__(self,val):
self.__val = self.__encode_utf8(val)
return
def __str__(self):
return self.__val
def __repr__(self):
return self.__val
def get_val(self):
return self.__val
class Point:
def __init__(self, x=0, y=0):
self.x=x
self.y=y
return
def serialize_instance(obj):
d={'__classname__': obj.__class__.__name__}
d.update(vars(obj))
return d
def unserialize_object(d):
d = Utf8Encode(d).get_val()
clsname=d.pop('__classname__',None)
if clsname:
cls=sys.modules[__name__].__dict__[clsname]
obj=cls() #make instance without calling __init__
for k in d.keys():
setattr(obj, k,d[k])
return obj
else:
return d
import time
import json
def put_together():
p=Point(2,3)
s=json.dumps(p, default=serialize_instance)
print(s)
a=json.loads(s, object_hook=unserialize_object)
print(a)
print(a.y)
print(a.x)
put_together()
复制代码
修改了你的代码,这些代码在python2 python3 都已经测试通过了。
其中的Utf8Encode 是为了使python2 可以在json使用的unicode情况下也可以使用。
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2