实际是上传问题,不应该用formData, formData会在文件内容里增加formdata的内容
------WebKitFormBoundaryAmwOYTDsYijMPWW9
Content-Disposition: form-data; name="初音.png"; filename="初音.png"
Content-Type: image/png
应该用body
fetch(url, {method: 'PUT', body:file})
.then(res => {
console.log(res);
})
.catch(e){
console.log(e);
};