Axios 通过a标签下载文件 跨域下载

 
    <a ref="down"  >a>
 getTest() {


        this.$axios.request({

          url: 'https://cnv13.55.la/download?file_key=3695fa9461a0ae59cf3148581e4fe339&handle_type=excel2pdf',
          method: 'get',
          responseType: 'blob', // 切记类型 blob

        }).then(res => {

          const url = URL.createObjectURL(res.data)
          this.$refs.down.href = url //转化成本地url
          this.$refs.down.download = '123456.pdf'//下载的文件名字
   		  this.$refs.down.click() //点击a标签

        })

Axios 通过a标签下载文件 跨域下载_第1张图片

你可能感兴趣的:(Axios,数据库,vue.js,前端,javascript,服务器,开发语言)