Te doy la bienvenida a nuestra página, en este lugar hallarás la solucíon a lo que estás buscando.
Ejemplo: lea el archivo de Excel usando javascript html
// the simplest way to read excel is to use sheetjs// https://github.com/SheetJS/sheetjs// A. in nodejsvarXLSX=require('xlsx');var workbook =XLSX.readFile('test.xlsx');/* DO SOMETHING WITH workbook HERE */// B. in browser// 1. first include the library// // 2. handle the file upload in a scriptfunctionhandleFile(e)var files = e.target.files, f = files[0];var reader =newFileReader();
reader.onload=function(e)var data =newUint8Array(e.target.result);var workbook =XLSX.read(data,type:'array');/* DO SOMETHING WITH workbook HERE */;
reader.readAsArrayBuffer(f);
input_dom_element.addEventListener('change', handleFile,false);
valoraciones y reseñas
Si te ha resultado de ayuda nuestro artículo, nos gustaría que lo compartas con más juniors de esta forma contrubuyes a dar difusión a nuestra información.
¡Haz clic para puntuar esta entrada!
(Votos: 3 Promedio: 4.7)