共计 437 个字符,预计需要花费 2 分钟才能阅读完成。
首发于 语雀文档
前言
微前端产品开发中应用到了 umi-request 这个,相似于 axios(但貌似又强于 axios),因为碰到文件下载的性能,也即是:获取数据流,记录一下。
其实最重要的两点无非是:
- responseType 要设置成 blob
https://github.com/blueju/umi-request-practice/blob/4f11c63e7b47f730ed1bcdde867c6f4575241485/example/get-data-stream.jsx#L14
- 如何将响应后果中的文件流导出来
https://github.com/blueju/umi-request-practice/blob/4f11c63e7b47f730ed1bcdde867c6f4575241485/example/get-data-stream.jsx#L16
Github
https://github.com/blueju/umi-request-practice.git
地位
正文完