class ProfileEncoder(json.JSONEncoder): def default(self, custom_obj): if isinstance(custom_obj, CustomProfile): return custom_obj.
確定! 回上一頁