Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pydantic 中是否有任何内置方式来指定选项?例如,假设我想要一个必须具有值“foo”或“bar”的字符串值。
我知道我可以使用正则表达式验证来执行此操作,但是由于我将 pydantic 与 FastAPI 一起使用,用户只会将所需的输入视为字符串,但是当他们输入某些内容时,它会给出验证错误。pydantic 的所有内置验证都显示在 api 界面中,所以如果有类似的东西会很棒
class Input(BaseModel): option: "foo" || "bar"
是的,您可以使用枚举:
class Choices(Enum): foo = 'foo' bar = 'bar' class Input(BaseModel): option: Choices
看这里
或者您可以使用Literal:
Literal
class Input(BaseModel): option: Literal['foo', 'bar']