XML Entities in worksheet's xml file not converting #815
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#815
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi,
I get some utf8 encoding errors when I'm tring to get values.
I'm getting my xlsx file through node's http module in binary format (raw) and converting it to a buffer (
new Buffer([String], "binary");
).Opening with
XLSX.read([Buffer], {type: "buffer"});
and converting my worksheet as json withXLSX.utils.sheet_to_json([XLSXObject]);
.In my header I should have "N° Client" or "Civilité" but I get "N�Client" / "Civilit�".
When I look in the xlsx (extract xlsx > xl > worksheets > sheet1.xml) I see N°Client / Civilité
Did I do something wrong ?
Thanks for your support !