You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Library is not able to read some of the formats of Excel using function
Code I am using to read the file:
code just hangs on line: workbook.xlsx.load(data).then(function() {
const workbook = new ExcelJS.Workbook();
const listData: any = [];
const arryBuffer = new Response(file).arrayBuffer();
arryBuffer.then(function(data) {
workbook.xlsx.load(data).then(function() {//code hangs here
const worksheet = workbook.getWorksheet(1);
The text was updated successfully, but these errors were encountered:
Library is not able to read some of the formats of Excel using function
Code I am using to read the file:
code just hangs on line: workbook.xlsx.load(data).then(function() {
const workbook = new ExcelJS.Workbook();
const listData: any = [];
const arryBuffer = new Response(file).arrayBuffer();
arryBuffer.then(function(data) {
workbook.xlsx.load(data).then(function() {//code hangs here
const worksheet = workbook.getWorksheet(1);
The text was updated successfully, but these errors were encountered: