admin管理员组文章数量:1349077
I have added xlsx.full.min.js file.
here is my code
var workbook = XLSX.read(data, { type: 'binary' });
var sheetName = workbook.SheetNames[0];
var excelData = XLSX.utils.sheet_to_row_object_array(workbook.Sheets[sheetName]);
I have added xlsx.full.min.js file.
here is my code
var workbook = XLSX.read(data, { type: 'binary' });
var sheetName = workbook.SheetNames[0];
var excelData = XLSX.utils.sheet_to_row_object_array(workbook.Sheets[sheetName]);
Share
Improve this question
edited Apr 7, 2017 at 9:43
Pengyy
38.2k15 gold badges85 silver badges73 bronze badges
asked Apr 7, 2017 at 9:39
rafi muhammadrafi muhammad
1922 silver badges11 bronze badges
1
- You show all but the important parts.. "I have added xlsx.full.min.js file." Show us how. + how do you import the library in the current file – Nico Van Belle Commented Apr 7, 2017 at 9:48
2 Answers
Reset to default 7For typescript, you have to install @types/xlsx
by npm install @types/xlsx --save
.
Import it this way:
import * as XLSX from 'xlsx';
this is issue on their site.
You have to install the XLSX
module using npm install xlsx
then you have to intialize XLSX
variable on top of your code if(typeof require !== 'undefined') XLSX = require('xlsx');
. Check the library details: https://www.npmjs./package/xlsx
本文标签: javascriptCannot find name 39XLSX39 when adding testts fileStack Overflow
版权声明:本文标题:javascript - Cannot find name 'XLSX' when adding test.ts file - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743856043a2550873.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论