其他分享
首页 > 其他分享> > vue前端文件下载

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()
      },

 

标签:文件,vue,form,前端,downloadFile,href,file,下载
来源: https://www.cnblogs.com/leavescy/p/12845470.html