虽然提示错误,但功能还能正常使用,但每次看这报错也有点不舒服
解决方法:
将xlsx版本更改为0.16.0
yarn add xlsx@0.16.0
npm install xlsx@0.16.0 --save
使用过程中如果出现 Error: Cannot read properties of undefined (reading ‘read‘) at FileReader.read 无法使用xlsx的read方法
同时终端也出现"export 'default' (imported as 'XLSX') was not found in 'xlsx',
解决:
直接将import XLSX from 'xlsx'改为import * as XLSX from 'xlsx/xlsx.mjs'即可
网友评论