码迷,mamicode.com
首页 > 其他好文 > 详细

如何使用post请求下载文件

时间:2019-02-26 17:20:41      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:create   文件   pos   div   pre   string   await   navig   mss   

使用get请求下载文件非常简便,但是get请求的url有长度和大小的限制,所以当请求参数非常多时无法满足需求,所以改成post请求
const res = await fetch(‘xxxxxxxxx‘, { method: ‘post‘, body: JSON.stringify(params), credentials: ‘include‘, headers: { ‘Cache-Control‘: ‘max-age=0‘, ‘Pragma‘: ‘no-cache‘, ‘Content-Type‘: ‘application/json;charset=UTF-8‘, ‘x-requested-with‘: ‘fetch‘ } }); const blob = await res.blob(); if (‘download‘ in document.createElement(‘a‘)) { var a = document.createElement(‘a‘); a.style.display = ‘none‘; var url = window.URL.createObjectURL(blob); var filename = decodeURIComponent(res.headers.get(‘Content-Disposition‘)); a.href = url; a.download = filename; document.body.appendChild(a); a.click(); window.URL.revokeObjectURL(url); document.body.removeChild(a); } else { navigator.msSaveBlob(blob); }

 

 

 

如何使用post请求下载文件

标签:create   文件   pos   div   pre   string   await   navig   mss   

原文地址:https://www.cnblogs.com/wangqingran/p/10438303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!