SpringBoot+vue导出PDF并下载

先使用word模板另存为PDF文件,然后Adobe Acrobat Pro DC打开工具 -- 准备表单,选择PDF文件打开即可设计PDF表单。

前端代码

downloadPDF(id) {
  this.$http({
    url: this.$http.adornUrl(`/sewage/espsewageaptcar/downloadPDF/${id}`),
    method: 'post',
    responseType: 'arraybuffer',
    data: this.$http.adornData({})
  }).then(response => {
    const contentDisposition = response.headers['content-disposition'];
    let filename = '废水转运联单.pdf'; // 默认文件名,以防无法从响应中提取

    if (contentDisposition) {
      const filenameRegex = /filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/;
      const matches = filenameRegex.exec(contentDisposition);
      if (matches != null && matches[1]) {
        filename = decodeURI(matches[1].replace(/['"]/g, ''));
      }
    }
    const blob = new Blob([response.data], { type: 'application/pdf' })
    const link = document.createElement('a')
    link.href = window.URL.createObjectURL(blob)
    link.download = filename
    link.click()
  }).catch(err => {
    this.$me
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值