gpt4 book ai didi

python - pydantic无法区分整数和字符串

转载 作者:行者123 更新时间:2023-12-05 09:07:12 25 4
gpt4 key购买 nike

from pydantic import BaseModel


class AuthenticationResponseSchema(BaseModel):
type: str
schema = AuthenticationResponseSchema(type=1)

现在我正在将 marshmallow 更改为 pydantic 的架构、模型......

但是 pydantic schema 在数据响应时没有验证 type

type的数据类型是string,但也传递了integer。

怎么了?

谢谢。

最佳答案

作为 the documentation 中的状态

strings are accepted as-is, int float and Decimal are coerced using str(v), bytes and bytearray are converted using v.decode(), enums inheriting from str are converted using v.value, and all other types cause an error

如果你想强制字符串,有一个叫做 Strict Types 的东西,因此您可以使用 StrictStr

from pydantic import BaseModel, StrictStr


class AuthenticationResponseSchema(BaseModel):
type: StrictStr


schema = AuthenticationResponseSchema(type=1)

关于python - pydantic无法区分整数和字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65277096/

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