0

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

我的问题是表格内容与所需的A4纸张大小重叠,以至于 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)
    })
  })
}

4

1 回答 1

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;'>

于 2019-06-18T11:10:25.433 回答