0

我正在使用 alasql 将数组导出到 xls。似乎 header:true 或 header:false 对显示或不显示标题没有影响。就我而言,我想显示标题,但我希望它们是粗体的。这是我正在使用的,但它不起作用。你能给我一些建议吗?

data = [{enddata : "2016-07-12", lc-type : "Ingredient", order :"2057207"}, {enddata : "2016-07-12", lc-type : "Ingredient", order :"2057208"}];

var opts = [{sheetid:'LCList',header:true, column: {style:{Font:{Bold:"1"}}}}];
        var res = alasql('SELECT INTO XLSX("LCList.xlsx",?) FROM ?',[opts,[data]]);
4

1 回答 1

0
  1. header:true应该是headers:true

  2. 请避免在数组中包含选项 ( [and ])

  3. 在此处查看粗体标题的工作示例:http: //jsfiddle.net/78cdxfww/

于 2016-07-13T09:36:44.930 回答