41 - 将json字符串转换为类的实例
【摘要】 如何将一个json文档映射为对象
product.json
{"name":"iPhone9",
"price":9999,
"count":3000}
123
import json
class Product: def __init__(self, d): self.__dict__ = d f = open('product.json', 'r')
jso...
如何将一个json文档映射为对象
product.json
{"name":"iPhone9",
"price":9999,
"count":3000}
- 1
- 2
- 3
import json
class Product: def __init__(self, d): self.__dict__ = d f = open('product.json', 'r')
jsonStr = f.read()
print(jsonStr)
product = json.loads(jsonStr, object_hook=Product)
print(type(product))
# print(product['name'])
print(product.name)
print(product.price)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
{"name":"iPhone9",
"price":9999,
"count":3000}
<class '__main__.Product'>
iPhone9
9999
- 1
- 2
- 3
- 4
- 5
- 6
def json2Product(d): return Product(d)
# 指定一个转换函数
product1 = json.loads(jsonStr, object_hook=json2Product)
print(product1.name)
print(product1.price)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
iPhone9
9999
- 1
- 2
文章来源: ruochen.blog.csdn.net,作者:若尘,版权归原作者所有,如需转载,请联系作者。
原文链接:ruochen.blog.csdn.net/article/details/104613684
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)