文件名去掉了表单数据中的前缀



我正在从js发送文件到我的golang服务器:

for (var value of formData.values()) {
console.log(value);
}
// File {name: 'img/<hash_key>.png', lastModified: 1635043863231, lastModifiedDate: Sat Oct 23 2021 23:51:03 GMT-0300 (Brasilia Standard Time), webkitRelativePath: '', size: 969, …}
// ...
var request = new Request( serverEndpoint, { body: formData, method: "POST", ... })
return fetch(request).then(response => { ... })

在我的golang服务器中,我使用以下代码来处理来自读取文件请求的多部分表单数据

if err := r.ParseMultipartForm(32 << 20); err != nil {
...
}
for _, fileHeader := range r.MultipartForm.File["files"] {
...
}

我希望在Go中读取具有相同文件名的文件,如img/<hash_key>.png但是我的服务器正在读取multipart-form到以下结构体:

f = {*mime/multipart.Form | 0xc000426090} 
├── Value = {map[string][]string} 
└── File = {map[string][]*mime/multipart.FileHeader} 
├── 0 = files -> len:1, cap:1
│   ├── key = {string} "files"
│   └── value = {[]*mime/multipart.FileHeader} len:1, cap:1
│       └── 0 = {*mime/multipart.FileHeader | 0xc000440000} 
│           ├── Filename = {string} "<hash_key>.png" // notice how FileName is missing 'img/' prefix
│           └── ...
└── ...

我正试图弄清楚这是如何发生的,以及如何防止这个条带前缀,因为我需要这个前缀来正确解析我的文件的上传路径

编辑:

仔细检查发现,我的服务器实际上正在获取具有正确名称的文件。调用r.ParseMultipartForm(32 << 20)后,我在r.Body.src.R.buf中得到以下内容:

------WebKitFormBoundary1uanPdXqZeL8IPUH
Content-Disposition: form-data; name="files"; filename="img/upload.svg" 
---- notice the img/ prefix
Content-Type: image/svg+xml
<svg height="512pt" viewBox= ...

而在r.MultipartForm.File["files"][0].FileName中显示为upload.svg

目录被删除在in Part.FileName():

// RFC 7578, Section 4.2 requires that if a filename is provided, the
// directory path information must not be used.
return filepath.Base(filename)

通过直接解析内容配置头来解决Part.FileName()。

for _, fileHeader := range r.MultipartForm.File["files"] {
_, params, _ := mime.ParseMediaType(fileHeader.Header.Get("Content-Disposition"))
filename := params["filename"]
if filename == "" {
// TODO: Handle unexpected content disposition 
// header (missing header, parse error, missing param).
}

相关内容

  • 没有找到相关文章

最新更新