gin-gonic/website

Multiple files: mistake in example code

qubing opened this issue · 3 comments

The method of getting file array from request form is wrong.

files := form.File["upload[]"]
->
files := form.File["upload"]

lawxen commented

I have test this is not a mistake, Maybe you missed that the example curl file name is "upload[]"

curl -X POST http://localhost:8080/upload \
  -F "upload[]=@/Users/appleboy/test1.zip" \
  -F "upload[]=@/Users/appleboy/test2.zip" \
  -H "Content-Type: multipart/form-data"

image

lawxen commented

So we should close this issue

This is related to the Key of the parameter passed
image