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:
Aresn 2017-08-08 10:00:27 +08:00 committed by GitHub
commit 6da6fffa1d

View file

@ -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);