美文网首页
axios下载文件

axios下载文件

作者: mihope | 来源:发表于2019-01-02 15:53 被阅读2次
    axios({
      url: 'http://localhost:5000/static/example.pdf',
      method: 'GET',
      responseType: 'blob', // important
    }).then((response) => {
      const url = window.URL.createObjectURL(new Blob([response.data]));
      const link = document.createElement('a');
      link.href = url;
      link.setAttribute('download', 'file.pdf');
      document.body.appendChild(link);
      link.click();
    });
    

    相关文章

      网友评论

          本文标题:axios下载文件

          本文链接:https://www.haomeiwen.com/subject/dcizlqtx.html