IE 导入 EXCEL 的 readExcelIE() 方法,处理对象数组中有不存在值的对象元素的方案

Posted wen233

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE 导入 EXCEL 的 readExcelIE() 方法,处理对象数组中有不存在值的对象元素的方案相关的知识,希望对你有一定的参考价值。

IE11遇到情况如下:

技术图片技术图片?

技术图片技术图片?

经过如此强大的.filter(item => item != null)处理之后:

技术图片技术图片?

完美!!!

IE导入EXCEL的readExcelIE方法,遇到这个鬼SHI大坑处理方法:
关键是这段代码:.filter(item => item != null),因为IE11大佬测试起来很卡,笔记本都发烫了蓝瘦香菇。。。搞了一晚终于可用纪念一哈。。。

for (let i of this.arrObj) 
    // if ([...Object.values(i)].filter(item => typeof item !== ‘undefined‘).length) 
    if ([...Object.values(i)].filter(item => item != null).length) 
        const _dataRow = 
        this.arrCheckAll.forEach(item =>  _dataRow[item[‘key‘]] = i[item[this.browser]] )
        this.infoTable.push(_dataRow)
    


// this.arrObj = this.arrObj.filter(itemA => [...Object.values(itemA)].filter(itemB => typeof itemB !== ‘undefined‘).length > 0)
this.arrObj = this.arrObj.filter(itemA => [...Object.values(itemA)].filter(itemB => itemB != null).length > 0)

 

技术图片

以上是关于IE 导入 EXCEL 的 readExcelIE() 方法,处理对象数组中有不存在值的对象元素的方案的主要内容,如果未能解决你的问题,请参考以下文章

Magicodes.IE之总体教程

Magicodes.IE之Excel模板导出教材订购表

请教如何用JQuery导入导出excel表格

abp_vue导入导出excel

批量导入数据(excel模板文件方式)

ASP.NET实现导出word,在IE6中可以下载保存但在IE8中却不能??