This commit is contained in:
kawanet 2013-03-16 00:24:01 +09:00 committed by SheetJS
parent 8205420a8a
commit c052dd7c92

View File

@ -49,9 +49,9 @@ Simple usage:
var xlsx = XLSX.readFile('test.xlsx');
var sheet_name_list = xlsx.SheetNames;
xlsx.SheetNames.forEach(function(y) {
for (z in zip.Sheets[y]) {
for (z in xlsx.Sheets[y]) {
if(z[0] === '!') continue;
console.log(y + "!" + z + "=" + JSON.stringify(zip.Sheets[y][z].v));
console.log(y + "!" + z + "=" + JSON.stringify(xlsx.Sheets[y][z].v));
}
});