axios post returns 空 object 上传文件时

Axios post returns empty object while uploading a file

您好,目前我正在尝试使用 Axios 的 get 方法上传文件,但是当我推送文件时,它获取的文件为 object(我需要上传 json 文件)

当前动作文件

  1. Current action file

调用动作的地方 action call

在控制台日志中我可以看到文件 json file that need to be uploaded

但是当我在 header 中看到它时在有效载荷中我在文件中变得空 object enter image description here

Axios POST 将数据作为其第二个参数。如果你只是想 POST 带参数,你需要传递一个空对象 {}null 作为第二个参数。