最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Exceljs: 'We found a problem with some content in ’filename.xlsx’.' - Stack Overflow

programmeradmin0浏览0评论

I am trying to render an excel file in Table format with Exceljs but I am getting this warning before opening the file:

We found a problem with some content in ’test.xlsx’. Do you want us to try to recover as much as we can? If you trust the source of this workbook, click Yes.

If I click yes it 'recovers' the file and everything is perfect, but I always get that warning before opening.

This only happens when I do more than one tab, for a single one works fine.

import Excel from 'exceljs'

const tabs = {
  'FIRST TAB': [
    { URL: '', FOO: 10 },
    { URL: '', FOO: 12.5 }
  ],
  'SECOND TAB': [
    { URL: '', FOO: 10 },
    { URL: '', FOO: 22.5 }
  ]
}

;(async () => {

  const workbook = new Excel.Workbook()
  let worksheet = {}

  for (const [label, tab] of Object.entries(tabs))  {

    worksheet = workbook.addWorksheet(label)
    worksheet.state = 'visible'

    const columns = Object.keys(tab[0]).map((items) => ({
      name: items,
      filterButton: true
    }))

    const rows = tab.map((entry) => Object.values(entry))

    workbook.getWorksheet(label).addTable({
      name: label,
      ref: 'A1',
      headerRow: true,
      columns,
      rows
    })
  }

  // Write to excel
  await workbook.xlsx.writeFile(`test.xlsx`)
})()

I am trying to render an excel file in Table format with Exceljs but I am getting this warning before opening the file:

We found a problem with some content in ’test.xlsx’. Do you want us to try to recover as much as we can? If you trust the source of this workbook, click Yes.

If I click yes it 'recovers' the file and everything is perfect, but I always get that warning before opening.

This only happens when I do more than one tab, for a single one works fine.

import Excel from 'exceljs'

const tabs = {
  'FIRST TAB': [
    { URL: 'https://google.', FOO: 10 },
    { URL: 'https://apple.', FOO: 12.5 }
  ],
  'SECOND TAB': [
    { URL: 'https://google.', FOO: 10 },
    { URL: 'https://apple.', FOO: 22.5 }
  ]
}

;(async () => {

  const workbook = new Excel.Workbook()
  let worksheet = {}

  for (const [label, tab] of Object.entries(tabs))  {

    worksheet = workbook.addWorksheet(label)
    worksheet.state = 'visible'

    const columns = Object.keys(tab[0]).map((items) => ({
      name: items,
      filterButton: true
    }))

    const rows = tab.map((entry) => Object.values(entry))

    workbook.getWorksheet(label).addTable({
      name: label,
      ref: 'A1',
      headerRow: true,
      columns,
      rows
    })
  }

  // Write to excel
  await workbook.xlsx.writeFile(`test.xlsx`)
})()
Share Improve this question edited Jun 23, 2021 at 18:18 Álvaro asked Jun 23, 2021 at 16:19 ÁlvaroÁlvaro 2,6084 gold badges30 silver badges67 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

The problem is caused by the space in the table name.

One way to fix it would be to replace the space with an underscore, that's actually what Excel does when it 'fixes' the file.

    workbook.getWorksheet(label).addTable({
      name: label.replace(' ', '_'),
      ref: 'A1',
      headerRow: true,
      columns,
      rows
    })

For me, this is caused by having a cell whose content is a string with length >=32768. I have to trim the string down to 32767 bytes.

I solved this problem by setting the ysplit value to 1. The old value was 0.

worksheet.views = [
  { 
    state: 'frozen', 
    xSplit: 0, 
    ySplit: 1
  }
];
发布评论

评论列表(0)

  1. 暂无评论