aqeel-legalinc / angular2-json2csv

Angular Component to convert CSV from Json
9 stars 13 forks source link

angular2-json2csv don't support UTF-8 characters #6

Closed pulkitgoel closed 7 years ago

pulkitgoel commented 7 years ago

According to my requirement i have export data having header in Hindi language but when i am trying export data then service not able parse header values. Please provide some solution for this.

error

pulkitgoel commented 7 years ago

I got a solution for UTF-8 characters problem. You need to add UTF support to Blob object like this:

var blob = new Blob([new Uint8Array([0xEF, 0xBB, 0xBF]),csvData], { type: 'text/csv' });