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
Add a ment  | 

2 Answers 2

Reset to default 7

For 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