我正在尝试序列化一个字典,该字典中嵌套了一个元组列表:
positive_explanation = fields.Dict(fields.List(tuple((fields.Integer(), fields.Float())), required=True))
但是当我尝试出现此错误时:
ValueError: The instances of the list elements must be of type marshmallow.base.FieldABC
我也尝试过:
positive_explanation = fields.Dict(fields.List(fields.Tuple((fields.Integer(), fields.Float())), required=True))
反而返回此错误:
AttributeError: module 'marshmallow.fields' has no attribute 'Tuple'
API文档让我很困惑。嵌套元组列表的正确方法是什么?