您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

Python实现复杂对象转JSON的方法示例

5b51 2022/1/14 8:17:03 python 字数 4685 阅读 344 来源 www.jb51.cc/python

本文实例讲述了Python实现复杂对象转JSON的方法。分享给大家供大家参考,具体如下:

概述

本文实例讲述了Python实现复杂对象转JSON的方法分享给大家供大家参考,具体如下:

在Python对于简单的对象转json还是比较简单的,如下:

import json
d = {'a': 'aaa','b': ['b1','b2','b3'],'c': 100}
json_str = json.dumps(d)
print json_str

对于复杂对象,可以使用下面的方法来实现,比如:

import json
class Customer:
  def __init__(self,name,grade,age,home,office):
    self.name = name
    self.grade = grade
    self.age = age
    self.address = Address(home,office)
  def __repr__(self):
    return repr((self.name,self.grade,self.age,self.address.home,self.address.office))
class Address:
  def __init__(self,office):
    self.home = home
    self.office = office
  def __repr__(self):
    return repr((self.name,self.age))
customers = [
    Customer('john','A',15,'111','aaa'),Customer('jane','B',12,'222','bbb'),Customer('dave',10,'333','ccc'),]
json_str = json.dumps(customers,default=lambda o: o.__dict__,sort_keys=True,indent=4)
print json_str

结果如下

[
  {
    "address": {
      "home": "111","office": "aaa"
    },"age": 15,"grade": "A","name": "john"
  },{
    "address": {
      "home": "222","office": "bbb"
    },"age": 12,"grade": "B","name": "jane"
  },{
    "address": {
      "home": "333","office": "ccc"
    },"age": 10,"name": "dave"
  }
]

PS:关于json操作,这里再为大家推荐几款比较实用的json在线工具供大家参考使用:

在线JSON代码检验、检验、美化、格式化工具:
http://tools.jb51.net/code/json

JSON在线格式化工具:
http://tools.jb51.net/code/jsonformat

在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson

json代码在线格式化/美化/压缩/编辑/转换工具:
http://tools.jb51.net/code/jsoncodeformat

在线json压缩/转义工具:
http://tools.jb51.net/code/json_yasuo_trans

更多Python相关内容感兴趣的读者可查看本站专题:《Python操作json技巧总结》、《Python编码操作技巧总结》、《Python图片操作技巧总结》、《Python数据结构与算法教程》、《Python Socket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总

希望本文所述对大家Python程序设计有所帮助。

总结

以上是编程之家为你收集整理的Python实现复杂对象转JSON的方法示例全部内容,希望文章能够帮你解决Python实现复杂对象转JSON的方法示例所遇到的程序开发问题。


如果您也喜欢它,动动您的小指点个赞吧

除非注明,文章均由 laddyq.com 整理发布,欢迎转载。

转载请注明:
链接:http://laddyq.com
来源:laddyq.com
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。


联系我
置顶