我正在使用angular、alasql和xlsx将一些表导出到 excel 中。我使用它如下:
var options = {
headers: true,
sheetid: 'users',
columns: [{
columnid: 'a',
title: 'Username'
}, {
columnid: 'b',
title: 'First name'
}, {
columnid: 'c',
title: 'Last name'
}]
};
alasql('SELECT * INTO XLSX("test.xlsx", ?) FROM ?', [options, $scope.users]);
我期待columnns选项来自定义我的表格标题。但它没有这样做。
任何线索为什么?