SheetJS xlsx风格需要excel中的单元格样式

我正在尝试使用SheetJS / xlsx导出excel,并希望格式化单元格。 我正在使用以下代码和Excel正在生成,但不能格式化单元格。 任何一点都可以指出这个问题,或者可以分享一个完整的示例代码?

加载库文件

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script type="text/javascript" src="http://oss.sheetjs.com/js-xlsx/xlsx.core.min.js"></script> <script type="text/javascript" src="http://sheetjs.com/demos/FileSaver.js"></script> 

剩余的代码是

 function Workbook() { if(!(this instanceof Workbook)) return new Workbook(); this.SheetNames = []; this.Sheets = {}; } function sheet_from_array_of_arrays(data, opts) { var ws = {}; var range = {s: {c:10000000, r:10000000}, e: {c:0, r:0 }}; for(var R = 0; R != data.length; ++R) { for(var C = 0; C != data[R].length; ++C) { if(range.sr > R) range.sr = R; if(range.sc > C) range.sc = C; if(range.er < R) range.er = R; if(range.ec < C) range.ec = C; var cell = {v: data[R][C], s: { alignment: {textRotation: 90 }, font: {sz: 14, bold: true, color: #FF00FF } }; //cell.s = {} /*var cell ={ v: '2.4.2014', t: 's', r: '<t>2.4.2014</t>', h: '2.4.2014', w: '2.4.2014', s: { patternType: 'solid', fgColor: { theme: 8, tint: 0.3999755851924192, rgb: '9ED2E0' }, bgColor: { indexed: 64 } } }; */ if(cell.v == null) continue; var cell_ref = XLSX.utils.encode_cell({c:C,r:R}); if(typeof cell.v === 'number') cell.t = 'n'; else if(typeof cell.v === 'boolean') cell.t = 'b'; else if(cell.v instanceof Date) { cell.t = 'n'; cell.z = XLSX.SSF._table[14]; cell.v = datenum(cell.v); } else cell.t = 's'; ws[cell_ref] = cell; } } if(range.sc < 10000000) ws['!ref'] = XLSX.utils.encode_range(range); return ws; } function s2ab(s) { var buf = new ArrayBuffer(s.length); var view = new Uint8Array(buf); for (var i=0; i!=s.length; ++i) view[i] = s.charCodeAt(i) & 0xFF; return buf; } function GenerateExcelFile(inData, colWidth){ var wb = new Workbook(); var ws = sheet_from_array_of_arrays(inData); var ws_name = "SheetJS"; /* add worksheet to workbook */ wb.SheetNames.push(ws_name); wb.Sheets[ws_name] = ws; /* TEST: column widths */ ws['!cols'] = colWidth; var wbout = XLSX.write(wb, {bookType:'xlsx', bookSST:true, type: 'binary'}); saveAs(new Blob([s2ab(wbout)],{type:"application/octet-stream"}), "test.xlsx") } 

调用这些代码

 var excelData = "JSON DATA"; var wscols = [ {wch:30}, {wch:20}, {wch:20} ]; <button onclick="GenerateExcelFile(excelData,wscols)">Export</button> 

请帮我找出我错在哪里。

谢谢苏曼