无法在表单数据中附加文件

问题描述 投票:0回答:1

我想使用formData和axios将文件上传到Symfony 3后端,我的问题是没有追加文件,但其他文本输入成功发送到后端

let company = document.getElementById('company_photo');
let companyLogo = company.files[0];

let form =document.getElementById('my-form-id');
let data = new FormData(form);
data.append('profile', companyLogo, companyLogo.name)


const config = {
     headers: {
           'content-type': 'multipart/form-data'
     }
 }
  axios.post(url, data, config)..................

问题是,当我试图从Symfony 3返回文件时

return new JsonResponse(['files' => $request->files->all()])

它只返回空对象

profile:{}

所有其他输入类型文本都已成功发送到服务器

查看网络选项卡,有效负载看起来像

clients_per_month: 4
message: rurutrurturrurtuturturt
profile: (binary)

配置文件变为二进制

表格看起来像这样

<form id='some-id' method="POST" enctype="multipart/form-data">
    <input type="text" name="blah" />
    <input type="file" name="filenameexample" id="exampleid">
    ........................

查看控制台进行调试,

for(var key of data.entries()) {
   console.log(key[0] + ','+key[1]);
}

结果导致了

profile, [object File]

有什么想法解决这个问题?

更新,文件看起来像这样

     console.log(company.files[0])

导致

     File {name: "Capture.PNG", lastModified: 1546921233553, 
         lastModifiedDate: Tue Jan 08 2019 12:20:33 GMT+0800 (Pluto 
         Standard Time), webkitRelativePath: "", size: 735825, …}
         lastModified: 1546921233553
         lastModifiedDate: Tue Jan 08 2019 12:20:33 GMT+0800 (Venus 
         Standard Time) {}
         name: "Capture.PNG"
         size: 735825
         type: "image/png"
         webkitRelativePath: ""
         __proto__: File
javascript symfony axios form-data
1个回答
0
投票
'content-type': 'multipart/form-data'

MIME类型中缺少必需的边界参数。

删除该行。允许XMLHttpRequest从FormData对象推断MIME类型。

© www.soinside.com 2019 - 2024. All rights reserved.