在Post请求的正文中发送列表值以验证Pydantic模型

2024-10-01 09:37:16 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在使用FastAPI、Pydantic、SQLAlchemy和Postgres构建一个服务,该服务接收post请求并将数据存储在数据库中。Pydantic模型中有一个列表,如下所示:

from typing import List
from pydantic import BaseModel, Field

class Note(base model):
    id: int
    title: str
    authors: List[str]

下表:

notes = Table(
    "notes",
    metadata,
    Column("id", Integer, primary_key=True),
    Column("title", String),
    Column("authors", ARRAY(String(50), dimensions=3)),
)

以下是我在没有列表值时执行post请求的方法:

def post(payload: Note):
    query = questions.insert().values(title=payload.title)
    return database.execute(query=query)

后请求主体:

{
    "title": "some value"
}

而且效果很好。但是添加列表值会导致Pydantic的验证错误:

def post(payload: Note):
    query = questions.insert().values(title=payload.title, authors=payload.authors)
    return database.execute(query=query)
{
    "title": "some value",
    "authors": ["name1", "name2", "name3"]
}

value is not a valid list

type_error.list

我如何更改post功能和请求主体以使其工作

编辑:回溯:

ERROR:    Exception in ASGI application
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/uvicorn/protocols/http/httptools_impl.py", line 385, in run_asgi
    result = await app(self.scope, self.receive, self.send)
  File "/usr/lib/python3/dist-packages/uvicorn/middleware/proxy_headers.py", line 45, in __call__
    return await self.app(scope, receive, send)
  File "/home/saeed/.local/lib/python3.8/site-packages/fastapi/applications.py", line 149, in __call__
    await super().__call__(scope, receive, send)
  File "/home/saeed/.local/lib/python3.8/site-packages/starlette/applications.py", line 102, in __call__
    await self.middleware_stack(scope, receive, send)
  File "/home/saeed/.local/lib/python3.8/site-packages/starlette/middleware/errors.py", line 181, in __call__
    raise exc from None
  File "/home/saeed/.local/lib/python3.8/site-packages/starlette/middleware/errors.py", line 159, in __call__
    await self.app(scope, receive, _send)
  File "/home/saeed/.local/lib/python3.8/site-packages/starlette/exceptions.py", line 82, in __call__
    raise exc from None
  File "/home/saeed/.local/lib/python3.8/site-packages/starlette/exceptions.py", line 71, in __call__
    await self.app(scope, receive, sender)
  File "/home/saeed/.local/lib/python3.8/site-packages/starlette/routing.py", line 550, in __call__
    await route.handle(scope, receive, send)
  File "/home/saeed/.local/lib/python3.8/site-packages/starlette/routing.py", line 227, in handle
    await self.app(scope, receive, send)
  File "/home/saeed/.local/lib/python3.8/site-packages/starlette/routing.py", line 41, in app
    response = await func(request)
  File "/home/saeed/.local/lib/python3.8/site-packages/fastapi/routing.py", line 204, in app
    response_data = await serialize_response(
  File "/home/saeed/.local/lib/python3.8/site-packages/fastapi/routing.py", line 126, in serialize_response
    raise ValidationError(errors, field.type_)
pydantic.error_wrappers.ValidationError: 1 validation error for Note
response
  value is not a valid list (type=type_error.list)

Tags: inpyselfhometitlelibpackageslocal
2条回答

我明白了。通过修复有错误的respone_model解决了这个问题,我所做的所有存储数据的工作都是正确的

@router.post("/", response_model=Note, status_code=201)
def create_note(payload: Note):
    note_id = post(payload)
    response_object = {
        "id": note_id,
        "title": payload.title,
        "authors": payload.authors,
    }
    return response_object
@router.get("/fetchusuarios", response_model=List[providers.schemas.User])
async def fetchall_users(db:Session=Depends(get_db)):
    usuarios = db.query(models.usermodel.User).all()
    return usuarios

相关问题 更多 >