本帖最后由 qq707820685 于 2019-2-21 11:05 编辑
您好,还是不行,引用v11.2.2和v12.0.0的exelio文件后,问题还是存在; 导入附件的demo.xlsx后,如下代码中的undefinedRows有七千多个元素。
浏览器为chrome: 版本 72.0.3626.109(正式版本) (64 位)
- let excelIo = new GC.Spread.Excel.IO();
- let excelFile = 'xxx.xlsx';//a .xlsx file
- excelIo.open(excelFile, function (json) {
- let undefinedRows = [];
- for (let row = 0; row < json.sheets.Sheet1.rowCount; row++) {
- if (typeof json.sheets.Sheet1.data.dataTable[row] === 'undefined') {
- undefinedRows.push(row);
- }
- }
- console.log(undefinedRows);
- }, function (e) {
- alert(e.errorMessage);
- });
复制代码
|