我正在尝试将 MongoDB 数据解析为一个 pydantic 模式,但未能读取其_id
似乎刚刚从模式中消失的字段。
这个问题肯定与对象属性前面的下划线有关。我无法更改_id
字段名称,因为这意味着根本不解析该字段。
请在下面找到我使用的代码(为了简化而使用int
而不是)ObjectId
from pydantic import BaseModel
class User_1(BaseModel):
_id: int
data_1 = {"_id": 1}
parsed_1 = User_1(**data_1)
print(parsed_1.schema())
class User_2(BaseModel):
id: int
data_2 = {"id": 1}
parsed_2 = User_2(**data_2)
print(parsed_2.schema())
User_1
解析成功,因为它的_id
字段是必需的,但之后无法读取。
User_2
如果附加到不提供任何id
字段但_id
.
上面代码的输出如下:
User_1 {'title': 'User_1', 'type': 'object', 'properties': {}}
User_2 {'title': 'User_2', 'type': 'object', 'properties': {'id': {'title': 'Id', 'type': 'integer'}}, 'required': ['id']}