2015-06-03 13:34:42 +00:00
|
|
|
import xlsx = require('xlsx');
|
|
|
|
|
2017-05-12 21:46:46 +00:00
|
|
|
const options: xlsx.IParsingOptions = {
|
2017-05-12 21:46:39 +00:00
|
|
|
cellDates: true
|
2015-06-03 13:34:42 +00:00
|
|
|
};
|
|
|
|
|
2017-05-12 21:46:46 +00:00
|
|
|
const workbook = xlsx.readFile('test.xlsx', options);
|
|
|
|
const otherworkbook = xlsx.readFile('test.xlsx', {type: 'file'});
|
2015-06-03 13:34:42 +00:00
|
|
|
|
|
|
|
console.log(workbook.Props.Author);
|
|
|
|
|
2017-05-12 21:46:46 +00:00
|
|
|
const firstsheet: string = workbook.SheetNames[0];
|
2015-06-03 13:34:42 +00:00
|
|
|
|
2017-05-12 21:46:46 +00:00
|
|
|
const firstworksheet = workbook.Sheets[firstsheet];
|
2015-06-03 13:34:42 +00:00
|
|
|
|
|
|
|
console.log(firstworksheet["A1"]);
|
|
|
|
|
2017-05-12 21:46:54 +00:00
|
|
|
interface ITester {
|
2017-05-12 21:46:39 +00:00
|
|
|
name: string;
|
2015-06-03 13:34:42 +00:00
|
|
|
age: number;
|
|
|
|
}
|
|
|
|
|
2017-05-12 21:46:54 +00:00
|
|
|
const jsonvalues: ITester[] = xlsx.utils.sheet_to_json<ITester>(firstworksheet);
|
2017-05-12 21:46:46 +00:00
|
|
|
const csv = xlsx.utils.sheet_to_csv(firstworksheet);
|
|
|
|
const formulae = xlsx.utils.sheet_to_formulae(firstworksheet);
|