Merge pull request #1444 from liuyanshi/allow_use_Blob_download_csv
allow browser whose useragent contains Safari to use Blob for downloading csv
This commit is contained in:
commit
6da6fffa1d
1 changed files with 1 additions and 2 deletions
|
@ -41,7 +41,7 @@ const csv = {
|
|||
_getDownloadUrl (text) {
|
||||
const BOM = '\uFEFF';
|
||||
// Add BOM to text for open in excel correctly
|
||||
if (window.Blob && window.URL && window.URL.createObjectURL && !has('Safari')) {
|
||||
if (window.Blob && window.URL && window.URL.createObjectURL) {
|
||||
const csvData = new Blob([BOM + text], { type: 'text/csv' });
|
||||
return URL.createObjectURL(csvData);
|
||||
} else {
|
||||
|
@ -66,7 +66,6 @@ const csv = {
|
|||
const link = document.createElement('a');
|
||||
link.download = filename;
|
||||
link.href = this._getDownloadUrl(text);
|
||||
link.target = '_blank';
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
document.body.removeChild(link);
|
||||
|
|
Loading…
Add table
Reference in a new issue