使用JS导出CSV文件及中文乱码问题解决方案

1. JS导出CSV中文乱码问题及兼容IE

// content 为接口传回来的值  "\ufeff"是为了解决CSV中文乱码问题
const blob = new Blob(["\ufeff" + content], {
  type: 'text/csv;charset=utf-8;'
});
// 如果是 IE 浏览器
if (window.navigator.msSaveOrOpenBlob) {
  window.navigator.msSaveOrOpenBlob(blob, 'name.csv');
} else {
  const link = document.createElement('a');
  const url = URL.createObjectURL(blob);
  link.href = url;
  link.setAttribute('download', 'name.csv');
  document.body.appendChild(link);
  link.click();
  document.body.removeChild(link);
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容