我正在尝试将照片上传到网络服务,文档明确指出请求类型是Multipart / files,所以我正在尝试使用axios总是失败的请求。
HTTP.put(`/employees/${response.data.data.id}/photo`, { photo: this.image }, {headers: { put: { 'Content-Type': 'multipart/files' }}})
.then((profilePictureResponse) => {
console.log(profilePictureResponse);
})
.catch((error) => {
console.log(error.response);
});
HTTP是具有默认配置的axios实例,但默认内容类型设置为application / json