HTML到A4上的pdf拟合表

时间:2019-06-18 10:27:43

标签: javascript node.js npm html-pdf

我目前正在使用html-pdf来获取我的表格数据并将其转换为pdf。

我的问题是表格内容与所需的A4纸张大小重叠,因此当我更改pdf时,pdf中完全缺少2列 formatA3合适且有效。

我需要它来容纳A4。有什么想法吗?

const dlPdfResult = (result) => {
  return new Promise(function (resolve, reject) {
    optionsType = {
      format: 'A4',
      orientation: 'landscape',
      paginationOffset: 0,
      header: {
        'height': '10mm',
        'contents': `<div style=' font-family: sans-serif, Arial, Helvetica; font-size: 11px; text-align: left;  width: 842px; overflow: hidden;'><div style='width: 10%; float:left;'></div><div style='width: 40%; float:left;padding: 0px 0px 0px 60px;'>Port2Port exports</div><div style='width: 40%; float:left; text-align: right;'>Logo</div><div style='width: 10%; float:left;'></div>`
      },
      footer: {
        'height': '10mm',
        'contents': {
          first: '1',
          2: '2',
          default: '<span style="color: #444;">{{page}}</span>/<span>{{pages}}</span>',
          last: 'Last Page'
        },
        type: 'pdf', // allowed file types: png, jpeg, pdf
        quality: '75'
      }
    }
    tableForm = tableify(result)

    pdf.create(tableForm, optionsType).toFile('./test.pdf', function (err, res) {
      if (err) return reject(err)
      resolve(res)
    })
  })
}

1 个答案:

答案 0 :(得分:0)

此刻,我唯一的解决方法是替换我得到的表结果,并使用mm为其添加样式并赋予其max-width

一个例子是:

tableForm = tableify(result)

strip = tableForm.replace(/<td/g, `<td style='max-width: 5mm;border: 1px solid #000;overflow: hidden;word-wrap: break-word;'`)

我对所有td和所有th都这样做了。

所以我的下一个替换看起来像:

var addStyleSpacingThString = strip.replace(/<th class="string">/g, `<th class='string' style='max-width: 5mm;text-align: left;'>`)

这正适合我所有的内容,我最后要提到的是我的桌子本身的宽度为100%。

<table style=' width: 100%; heigth: auto;font-size: 11px;font-family: sans-serif, Arial, Helvetica; border-collapse: collapse;'>