Browse Source

fix just the extra values problem (again, purposefully with failing tests to demonstrate the problem, fixing in next commit)

pull/13464/head
sneakers-the-rat 4 weeks ago
parent
commit
7fade13ac8
No known key found for this signature in database GPG Key ID: 6DCB96EF1E4D232D
  1. 5
      fastapi/dependencies/utils.py

5
fastapi/dependencies/utils.py

@ -838,6 +838,7 @@ async def _extract_form_body(
received_body: FormData,
) -> Dict[str, Any]:
values = {}
field_aliases = {field.alias for field in body_fields}
first_field = body_fields[0]
first_field_info = first_field.field_info
@ -870,8 +871,10 @@ async def _extract_form_body(
value = serialize_sequence_value(field=field, value=results)
if value is not None:
values[field.alias] = value
# preserve extra keys not in model body fields for validation
for key, value in received_body.items():
if key not in values:
if key not in field_aliases:
values[key] = value
return values

Loading…
Cancel
Save