Doc BodyParser: Add multipart form info about the file data

v2
René 2025-01-23 08:32:43 +01:00
parent 3729281a1e
commit 8b9db059d7
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ It is important to specify the correct struct tag based on the content type to b
:::note
When handling `multipart/form-data`, only the form values can be directly assigned to the struct fields. Files included in the request are not automatically assigned to the struct. You must handle files separately using [`FormFile`](#FormFile) or other file-specific methods.
When handling `multipart/form-data`, only the form values can be directly assigned to the struct fields. Files included in the request are not automatically assigned to the struct. You must handle files separately using [`FormFile`](#formfile) or other file-specific methods.
:::