表单 – Go – formFile用于多个文件

前端之家收集整理的这篇文章主要介绍了表单 – Go – formFile用于多个文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
formFile函数完美地工作,但 in the docs表示“FormFile返回所提供的表单键的第一个文件”.有没有办法获得带有输入的html表单的几个文件,如:
<input type="file" name="myfiles" multiple="multiple">

可能会回来?

解决方法

FormFile是一个便利功能.您可以在MultipartForm中手动解析和查找要查找的文件.
req.ParseMultipartForm(32 << 20) // 32MB is the default used by FormFile
fhs := req.MultipartForm.File["myfiles"]
for _,fh := range fhs {
    f,err := fh.Open()
    // f is one of the files
}
原文链接:https://www.f2er.com/html/242644.html

猜你在找的HTML相关文章