找回密码
 立即注册

QQ登录

只需一步,快速开始

Richard.Ma 讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2022-12-30 17:46  /   查看:2068  /  回复:0
本帖最后由 Richard.Ma 于 2022-12-30 18:10 编辑

Nuxt.js 是一个基于 Vue.js 的通用应用框架,一个用于Vue.js 开发SSR应用的一站式解决方案。它的优点是将原来几个配置文件要完成的内容,都整合在了一个nuxt.config.js,封装与扩展性完美的契合。

简单来说,nuxtjs项目就是一个vue的项目融合一个node.js server项目,这里node服务有两个作用,第一点是代替浏览器的工作,笼统理解就是在created时的请求数据和页面渲染,第二点是当作静态文件服务器,把渲染好的页面返回给用户。

要在 Nuxt.js中实现在线Excel,通过引入SpreadJS可以轻松实现这一点,这篇文章会分享如何通过SpreadJS在Nuxt.js中实现在线Excel

在将 SpreadJS 放入  Nuxt.js之前,我们必须首先创建一个  Nuxt.js项目。在本教程中,我们将使用 Nuxt.js提供的脚手架工具create-nuxt-app
使用npx create-nuxt-app <项目名>即可快速创建一个 Nuxt.js项目。创建过程中会有一些选项,创建完成后的项目文件结构如下

image.png155291442.png
在创建成功后通过npm run build编译后,即可通过npm start运行。
接下来,我们在项目中引入spreadjs,

1.在package.json文件中添加spreadjs相关包
  1. "@grapecity/spread-excelio": "15.2.1",
  2.     "@grapecity/spread-sheets": "15.2.1",
  3.     "@grapecity/spread-sheets-resources-zh": "15.2.1",
  4.     "@grapecity/spread-sheets-vue": "15.2.1"
复制代码

2.在component文件夹中添加一个SpreadJS.vue文件
和我们在普通的vue项目中一样通过在template中添加gc-spread-sheets标签即可添加spreadjs 的工作簿,这里需要注意的一点是,由于Nuxt.js默认会把组件作为服务端组件来编译,所以这里需要给外层额外添加一个<client-only>标签来让nuxt编译时作为客户端组件编译,另外,我们也顺便加入了用于导入导出功能的按钮和文件输入框
  1. <template>
  2.   <div class="sample-tutorial">
  3.     <button @click="exportexcel">导出excel</button>
  4.     <input type="file" id="fileDemo" class="input" @change="changeFileDemo">
  5.     <input type="button" id="loadExcel" value="import" class="button" @click="loadExcel">

  6. <client-only placeholder="loading...">
  7.     <gc-spread-sheets :hostClass="hostClass" @workbookInitialized="initwb">
  8.       <gc-worksheet>
  9.       </gc-worksheet>
  10.       <gc-worksheet> </gc-worksheet>
  11.     </gc-spread-sheets>
  12.   </client-only>
  13.   </div>
  14. </template>
复制代码

3.导入spreadjs相关组件
在普通的vue项目中,我们只需要通过import所需的 spreadjs包即可,但是在Nuxt.js中,如果直接import到我们刚刚创建的vue文件中,会提示"d[color=var(--color-fg-default)  !important]ocument is not defined"错误,原因和上面提到的类似。解决办法是。新建一个js文件。在其中import相关的包。然后在配置文件nuxt.config.js中,将其做为plugins引入,ssr设置为false,这样就可以避免上述问题。我们新建了一个spreadjs.js文件,写入了下面的内容
  1. import "@grapecity/spread-sheets-vue";
复制代码


最后是vue文件中的script部分,可以看到只有css是通过import 引入的,这个不会受到影响
对导入导出功能需要使用的spread-excelio包,我们通过require方法,在加载时再动态导入,避免了编译时提到的上述问题。

  1. <script >
  2.    
  3. import "@grapecity/spread-sheets/styles/gc.spread.sheets.excel2016colorful.css";

  4. var ExcelIO={};
  5. export default {
  6.   name: "SpreadJS",
  7.   data() {
  8.     return {
  9.       hostClass: "spread-host",
  10.       autoGenerateColumns: true,
  11.       width: 300,
  12.       visible: true,
  13.       resizable: true,
  14.       formatter: "$ #.00",
  15.     };
  16.   },
  17.   computed: {
  18.     dataTable() {
  19.       let dataTable = [];
  20.       for (let i = 0; i < 42; i++) {
  21.         dataTable.push(i + 0.56);
  22.       }
  23.       return dataTable;
  24.     },
  25.   },
  26.   methods: {
  27.     initwb: function (spread) {
  28.       this.spread = spread;
  29.       spread.getSheet(0).setArray(0, 0, this.dataTable);
  30.       spread.getSheet(1).visible(false);
  31.     },
  32.     exportexcel: function () {
  33.       let spread = this.spread;
  34.       let excelIo = new ExcelIO.IO();

  35.       let fileName = "test.xlsx";
  36.       let password = this.password;
  37.       if (fileName.substr(-5, 5) !== ".xlsx") {
  38.         fileName += ".xlsx";
  39.       }

  40.       let json = spread.toJSON();

  41.       // here is excel IO API
  42.       excelIo.save(
  43.         json,
  44.         function (blob) {
  45.           let url = window.URL.createObjectURL(blob);
  46.           let link = document.createElement("a");
  47.           link.style.display = "none";
  48.           link.href = url;
  49.           link.setAttribute("download", fileName);
  50.           document.body.appendChild(link);
  51.           link.click();
  52.           document.body.removeChild(link); // 下载完成移除元素
  53.           window.URL.revokeObjectURL(url);
  54.           //saveAs(blob, fileName);
  55.         },
  56.         function (e) {
  57.           // process error
  58.           console.log(e);
  59.         },
  60.         {
  61.           password: password,
  62.         }
  63.       );
  64.     },
  65.     changeFileDemo(e) {
  66.             this.importExcelFile = e.target.files[0];
  67.         },
  68.     loadExcel(e) {
  69.             let spread = this.spread;
  70.             let excelIo = new ExcelIO.IO();
  71.             let excelFile = this.importExcelFile;
  72.             
  73.             // here is excel IO API
  74.             excelIo.open(excelFile, function (json) {
  75.                 let workbookObj = json;
  76.                 spread.fromJSON(workbookObj);
  77.                
  78.             }, function (e) {
  79.                 // process error
  80.                 alert(e.errorMessage);
  81.             });
  82.         }
  83.   },
  84.   mounted:function(){
  85.     ExcelIO=require("@grapecity/spread-excelio");
  86.   }
  87. };
  88. </script>
复制代码


最终运行效果

image.png48853148.png

最后附上demo
spreadjsWithNuxt.zip (2.07 MB, 下载次数: 203)

0 个回复

您需要登录后才可以回帖 登录 | 立即注册
返回顶部