I'm importing these library:
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.8.0/xlsx.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.8.0/jszip.js"></script>
and trying to fetch & parse local file saved in my project folder:
fetch('Eshop_product_list.xlsx').then(res => {
return res.blob();
}).then(res => {
console.log('file:', res);
var workbook = XLSX.read(res, {
type: 'binary'
});
});
But I can't get it working. I've tried different combinations of XLSX type arguments with res.blob(), res.text(), res.bufferArray()
but everytime it is throwing an error.
What is the correct way?