我使用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]]);
答案 0 :(得分:0)
您的header:true
应为headers:true
请避免在数组中添加选项([
和]
)
请在此处查看粗体标题的工作示例:http://jsfiddle.net/78cdxfww/