How to download file with data which comes from server in text/csv
format?
I'm using fetch
. I have function like this
download(content, filename, contentType)
{
const a = document.createElement('a');
a.href = 'data:text/csv;charset=utf-8,' + encodeURI(content);
a.target = '_blank';
a.download = filename;
a.click();
}
Response comes like object
.
Hope your help!