如何在alasql导出到xlsx时使标题变粗

时间:2016-07-13 07:47:28

标签: javascript alasql

我使用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]]);

1 个答案:

答案 0 :(得分:0)

  1. 您的header:true应为headers:true

  2. 请避免在数组中添加选项([]

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