1
如何使用Web API fetch方法將文件發佈爲請求正文?HTML5 Web API將'POST'文件作爲正文?
window.fetch('https://www.example.com',
{
method: 'POST',
headers: new Headers({'content-type': 'application/octet-stream'}),
body: FILE
}
)
那豈不是使用Base64編碼呢?有沒有相當於xhr.send(文件)? – LeeGee