我打電話的API下載使用API獲取從服務器Excel文件,但它並沒有強制瀏覽器下載,下面是我的頭回應:提取API來強制下載文件
HTTP/1.1 200 OK Content-Length: 168667
Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
Server: Microsoft-IIS/8.5
Content-Disposition: attachment; filename=test.xlsx
Access-Control-Allow-Origin: http://localhost:9000
Access-Control-Allow-Credentials: true
Access-Control-Request-Method: POST,GET,PUT,DELETE,OPTIONS
Access-Control-Allow-Headers: X-Requested-With,Accept,Content-Type,Origin
Persistent-Auth: true
X-Powered-By: ASP.NET
Date: Wed, 24 May 2017 20:18:04 GMT
下面我的代碼,我使用調用API:
this.httpClient.fetch(url, {
method: 'POST',
body: JSON.stringify(object),
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
})
您可能想要使用https://stackoverflow.com/posts/44168090/edit來更新/編輯您的問題,以添加您正在使用的代碼片段來嘗試下載文件 – sideshowbarker
你是怎麼「打電話給API「? – Tom
this.httpClient.fetch(URL,{ \t方法: 'POST', \t體:JSON.stringify(對象), \t標頭:{ \t \t '接受': '應用/ JSON', \t \t 'Content-Type':'application/json' \t} }) –