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

 

上一篇:图片保存到相册


下一篇:小程序下载网络图片