gpt4 book ai didi

python 棉花糖 : deserializing nested schema with only one exposed key

转载 作者:太空宇宙 更新时间:2023-11-03 11:42:25 24 4
gpt4 key购买 nike

我正在尝试通过仅从嵌套项中获取一个字段来将嵌套对象列表序列化为标量值。而不是 [{key: value}, ...] 我想接收 [value1, value2, ...]

代码:

from marshmallow import *

class MySchema(Schema):
key = fields.String(required=True)

class ParentSchema(Schema):
items = fields.Nested(MySchema, only='key', many=True)

鉴于上述模式,我想序列化一些数据:

>>> data = {'items': [{'key': 1}, {'key': 2}, {'key': 3}]}
>>> result, errors = ParentSchema().dump(data)
>>> result
{'items': ['1', '2', '3']}

这按预期工作,为我提供了标量值列表。但是,当尝试使用上述模型反序列化数据时,数据突然无效:

>>> data, errors = ParentSchema().load(result)
>>> data
{'items': [{}, {}, {}]}
>>> errors
{'items': {0: {}, '_schema': ['Invalid input type.', 'Invalid input type.', 'Invalid input type.'], 1: {}, 2: {}}}

我是否缺少任何配置选项,或者这根本不可能?

最佳答案

对于遇到同样问题的任何人,这是我目前使用的解决方法:

class MySchema(Schema):
key = fields.String(required=True)

def load(self, data, *args):
data = [
{'key': item} if isinstance(item, str) else item
for item in data
]
return super().load(data, *args)


class ParentSchema(Schema):
items = fields.Nested(MySchema, only='key', many=True)

关于 python 棉花糖 : deserializing nested schema with only one exposed key,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46949489/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com