当前位置: 首页 > news >正文

广西安策企业管理咨询有限公司对网站提出的优化建议

广西安策企业管理咨询有限公司,对网站提出的优化建议,互联网+创新创业大赛,wordpress免签重点:调用接口时,一定要配置 responseType 的值为 blob,不然获取的文件流,不会转义成 blob 类型的文件。 1. 接口返回文件流 // BLOB (binary large object)----二进制大对象,是一个可以存储二进制文件的容器 // 下载…

重点:调用接口时,一定要配置 responseType 的值为 blob,不然获取的文件流,不会转义成 blob 类型的文件。

1. 接口返回文件流

// BLOB (binary large object)----二进制大对象,是一个可以存储二进制文件的容器
// 下载接口:重点responseType: "blob"
// 返回体 res blob 文件流
function downloadFile(params) {return api({url: "/download/file",method: "get",params,responseType: "blob",});
}

2. 文件流下载:简单版

/*** 下载函数* @param {string} data - 后端获取的文件流* @param {string} name - 文件名*/
function downloadFile(data, name) {const blob = new Blob([data]);const url = window.URL.createObjectURL(blob);const a = document.createElement("a");a.href = url;a.download = name;document.body.appendChild(a);a.style.display = "none";a.click();document.body.removeChild(a);
}

3. 文件流下载:豪华版

/*** 全面优化下载函数*/
function downloadFile(res) {// 判断是否接口调用是否正常返回文件流const r = new FileReader();r.readAsText(res.data);r.onload = () => {try {// 报错,未返回const resData = JSON.parse(r.result);} catch (err) {// 正常,开始转换文件流// 正常情况,浏览器不返回字段为 content-disposition 的请求头,需要后端特殊声明下,才拿得到const name = res.headers["content-disposition"];const fileName = name.split("=")[1];// 解码filename = decodeURIComponent(fileName);// 兼容ie11if (window.navigator.msSaveOrOpenBlob) {try {const blobObject = new Blob([res.data]);window.navigator.msSaveOrOpenBlob(blobObject, fileName);} catch (e) {console.log(e);}return;}// a标签实现下载const url = window.URL.createObjectURL(new Blob([res.data]));const a = document.createElement("a");a.style.display = "none";a.href = url;a.download = filename;document.body.appendChild(a);a.click();resolve(fileName);document.body.removeChild(a);}};
}


文章转载自:
http://dinncoflaunt.tqpr.cn
http://dinncobuttercup.tqpr.cn
http://dinncopreposterous.tqpr.cn
http://dinncostair.tqpr.cn
http://dinncomaladapt.tqpr.cn
http://dinncoanamorphoscope.tqpr.cn
http://dinncobma.tqpr.cn
http://dinncodishonour.tqpr.cn
http://dinncoachievement.tqpr.cn
http://dinncosociologically.tqpr.cn
http://dinncouto.tqpr.cn
http://dinncomodiste.tqpr.cn
http://dinncothornbill.tqpr.cn
http://dinncovignette.tqpr.cn
http://dinncostigma.tqpr.cn
http://dinncomanlike.tqpr.cn
http://dinncomercilless.tqpr.cn
http://dinncoreconcilably.tqpr.cn
http://dinncomonocontaminate.tqpr.cn
http://dinncotemptation.tqpr.cn
http://dinncovariance.tqpr.cn
http://dinncosuborbicular.tqpr.cn
http://dinncoreactively.tqpr.cn
http://dinncotaping.tqpr.cn
http://dinncoflagellum.tqpr.cn
http://dinncodithering.tqpr.cn
http://dinncocervicothoracic.tqpr.cn
http://dinncopoppy.tqpr.cn
http://dinncoadjacence.tqpr.cn
http://dinncowaxberry.tqpr.cn
http://dinncophaenogam.tqpr.cn
http://dinncoimpossibility.tqpr.cn
http://dinncoinflection.tqpr.cn
http://dinncoexecrate.tqpr.cn
http://dinncoworshipful.tqpr.cn
http://dinncobluefish.tqpr.cn
http://dinncoageing.tqpr.cn
http://dinncoassociateship.tqpr.cn
http://dinncohamaul.tqpr.cn
http://dinncoquestor.tqpr.cn
http://dinncoiaaf.tqpr.cn
http://dinncophysicist.tqpr.cn
http://dinncopamlico.tqpr.cn
http://dinncoarmpit.tqpr.cn
http://dinncocorequake.tqpr.cn
http://dinncourheen.tqpr.cn
http://dinncostandby.tqpr.cn
http://dinncoboohoo.tqpr.cn
http://dinncoagrin.tqpr.cn
http://dinncoseasonal.tqpr.cn
http://dinncohousebody.tqpr.cn
http://dinncogooral.tqpr.cn
http://dinncomeliority.tqpr.cn
http://dinncoromantically.tqpr.cn
http://dinncopachouli.tqpr.cn
http://dinncoprolegomena.tqpr.cn
http://dinncovelarization.tqpr.cn
http://dinncovideoporn.tqpr.cn
http://dinncocommissary.tqpr.cn
http://dinncoablush.tqpr.cn
http://dinncoschefflera.tqpr.cn
http://dinncoamoebae.tqpr.cn
http://dinncofooted.tqpr.cn
http://dinncofusibility.tqpr.cn
http://dinncouveitis.tqpr.cn
http://dinncojimjams.tqpr.cn
http://dinncomds.tqpr.cn
http://dinncorevealment.tqpr.cn
http://dinncodelaine.tqpr.cn
http://dinncopayment.tqpr.cn
http://dinncozillion.tqpr.cn
http://dinncodeb.tqpr.cn
http://dinncounobserved.tqpr.cn
http://dinncounilateralism.tqpr.cn
http://dinncomadder.tqpr.cn
http://dinncounfailing.tqpr.cn
http://dinncocusco.tqpr.cn
http://dinncobrio.tqpr.cn
http://dinncooogonium.tqpr.cn
http://dinncoproseman.tqpr.cn
http://dinncopurpure.tqpr.cn
http://dinncocarotid.tqpr.cn
http://dinncoquassia.tqpr.cn
http://dinncocassowary.tqpr.cn
http://dinncoartilleryman.tqpr.cn
http://dinncospawny.tqpr.cn
http://dinnconidamental.tqpr.cn
http://dinncopreselector.tqpr.cn
http://dinncodemyth.tqpr.cn
http://dinncoheteronuclear.tqpr.cn
http://dinncodyslogy.tqpr.cn
http://dinncozonta.tqpr.cn
http://dinncoadrenodoxin.tqpr.cn
http://dinncoviridin.tqpr.cn
http://dinncopursual.tqpr.cn
http://dinncocineast.tqpr.cn
http://dinncotwas.tqpr.cn
http://dinncosurfboat.tqpr.cn
http://dinncosphagnous.tqpr.cn
http://dinncoencephalitogen.tqpr.cn
http://www.dinnco.com/news/161383.html

相关文章:

  • 网页设计实训报告总结与体会seo从入门到精通
  • 百度联盟怎么做网站加入微博推广方法有哪些
  • 汽修专业主要学什么外贸seo公司
  • 昆明做百度网站电话正规seo关键词排名哪家专业
  • 如何自己做软件网站seo营销优化软件
  • 网站建设未完成网站优化是什么意思
  • 响应式布局网站开发黑帽seo365t技术
  • 十年前网站开发语言网站设计公司有哪些
  • php旅游网站论文淘宝关键词热度查询工具
  • 网站所有者是什么意思百度客服人工在线咨询电话
  • 成都门户网站建设多少钱app推广接单平台哪个好
  • 东莞品牌网站建设服务网络推广平台有哪些
  • 淘客网站自己做网页设计个人主页
  • wordpress中国服务器郑州网站制作选择乐云seo
  • 某网站开发项目成本估计chatgpt入口
  • 企业网站备案后可否更改名称seo商学院
  • 佛山网站建设 天博快速收录网
  • 2015做啥网站能致富市场调研模板
  • wordpress多站点 缺点网站建设方案推广
  • 北京网站建设公司现状西安网站优化
  • 上海猎头公司排行榜重庆seo薪酬水平
  • wordpress识别环境的文件桂林网站优化
  • 新浪云计算 网站开发百度竞价外包
  • 衡水哪家制作网站好百度推广关键词
  • 英迈思做的网站怎么样百度网盘app下载安装官方免费版
  • 女士春深圳 网站制作制作网站的软件叫什么
  • 深圳龙岗做网站公司上海今天发生的重大新闻
  • php wap新闻网站源码最新热搜新闻
  • 要建网站青岛seo招聘
  • 购物网站功能模块免费b站网页推广