纯前端实现导出excel

任何东西在自己没有使用过、实现过,都感觉好难、好难。其实并没有想象中那么难。

//批量导出
exportData: function() {
    //selectionData需要导出的数据,数据格式
    let selectionData = ["SheetJS".split(""), "1234567".split("")];
    const ws = XLSX.utils.aoa_to_sheet(selectionData);
    const wb = XLSX.utils.book_new();
    XLSX.utils.book_append_sheet(wb, ws, "SheetJS");
    XLSX.writeFile(wb, "sheetjs.xls");
}

上面是实现批量导出的代码。
这里用到了网上写的插件,因此才特别简单。
如何用插件,上面地址有具体的安装教程。重点是我上面写的这段代码。
参考文章

  1. https://github.com/SheetJS/sheetjs/blob/master/demos/vue/pages/index.vue
  2. https://github.com/SheetJS/sheetjs/tree/master/demos/vue

你可能感兴趣的:(导出)