摘要: def PrepareForJson(obj): tempObj = {} dic = obj.__dict__ for key in dic: if "__" not in key: if not callable(dic[key]): tempObj[key] = dic[key] return 阅读全文
posted @ 2021-06-25 19:08 3ξ 阅读(130) 评论(0) 推荐(0) 编辑