Description
Using a single Body parameter, the JSON format will report an error
Additional context
@router.post("/test/")
async def test(abd: str=Body(...)):
print(abd) ---error
@router.post("/test/")
async def test(abd: str=Body(...), acd: str=Body(...)):
print(abd) ---right
Using a single Body parameter, the JSON format will report an error