如何在PdfMake中传递数组以创建表

问题描述 投票:-1回答:1

console.log(this.pgCheckOutList);pgCheckOutList

我需要此数据用于PdfMake中的表like this

请某人帮助我

angular pdf multidimensional-array pdf-generation pdfmake
1个回答
0
投票

您必须将其传递给这样的内容:

{
      table: {
        headerRows: 1,
        widths: '*',
        body: [
                ['col1','col2','col3'],//header
                ['col1value','col3value','col3value']//values
                ['col1value','col3value','col3value']//values
              ]
      },
      layout: this.layout()
};
© www.soinside.com 2019 - 2024. All rights reserved.