728x90
상태 코드를 추가하는 방법을 알아보는것이 목표
1. import status
from fastapi import FastAPI, status
2. 함수 정의
@app.post("/", status_code=status.HTTP_201_CREATED)
async def create_book(book: Book):
BOOKS.append(book)
return book
- 201 은 "생성됨"를 의미하는 상태 코드
3. Swagger 확인
- "status_code=status.HTTP_201_CREATED"을 넣었을 때 상태 코드 201을 받은 것을 볼 수 있다.
- 하지만 "status_code=status.HTTP_201_CREATED" 없을 때는 상태 코드 200을 받은 것을 볼 수 있다.
728x90
SMALL
'Develop > FastAPI' 카테고리의 다른 글
FastAPI Headers - 28 (0) | 2022.12.24 |
---|---|
FastAPI Form Fields - 27 (0) | 2022.12.24 |
FastAPI Response Model - 25 (0) | 2022.12.24 |
FastAPI Raise HTTP Exception(사용자 지정) - 24 (0) | 2022.12.24 |
FastAPI Raise HTTP Exception - 23 (0) | 2022.12.24 |