vue前端文件下载

 

 

点击button- downloadFile可以下载文件,其中this.form.file是文件名

downloadFile: function() {
        this.$notify({
          message: '正在下载~',
          type: 'success'
        })
        const a = document.createElement('a')
        a.href = 'http://localhost:8080/file/download?fileName=' + this.form.file
        console.log('a.href=', a.href)
        a.click()
      },

 

posted @ 2020-05-07 20:41  小叶子leavescy  阅读(2908)  评论(0编辑  收藏  举报