文件流

  // 文件流的多此一举请求
  componentDidMount() {
    const that = this;
    fetch('http://172.16.20.202/api/v1/wechat/content/13/media', {
      method: 'GET',
      responseType: 'blob',
    })
      .then(res => {
        console.log(res,89);
        return res.blob()
      }).then(res => {
        const reader = new FileReader();
        reader.readAsDataURL(res);
        reader.onload = (e) => {
          that.setState({ img: e.target.result })
          console.log(e.target.result,0);
        }
      })
  }
上一篇:js中通过ajax接口后台返回的文件流如何进行下载?


下一篇:xlsx.core.min.js读取excel文件数据(无乱码,测试通过)