SpreadJS最新试用版

国内外常见的在线文档,包括:微软Office Online、Google文档、石墨文档、腾讯文档、飞书、语雀等。

  • 数据填 :支持在线导入导出 Excel、大数据量填 、填 暂存、多 sheet 填 、多级上

  • 类Excel的呈现方式:提供类Excel的操作模式和使用体验,兼容Excel数据结构

可以说,只要满足了上述需求,就可以开发出一款优秀的在线文档。

而SpreadJS纯前端表格控件,恰好满足。

下面,我们就通过Spring Boot + Vue.js的前后分离开发技术,演示如何借助 SpreadJS 搭建一款简单的在线文档系统。

在线文档系统示例

PS:欢迎大家前往SpreadJS 产品官 ,了解并学习这款纯前端表格组件,以实现更多在线文档的功能。

如下是系统运行截图。

进入页面(File List的展示文件均为服务器上的文件):

单击 Excel文件,右侧会显示该文件的详细信息:

双击文件夹:

在线对Excel文件进行修改、删除:

技术栈

  • 后端:SpringBoot
  • 前端:SpreadJS、Vue、ElementUI、Typescript

关键步骤

1、 实现该系统的相关依赖包都写在package.json里,执行命令 npm install 即可安装,主要有:

"@grapecity/spread-sheets": "^13.0.5","@grapecity/spread-sheets-resources-zh": "^13.0.5","@grapecity/spread-sheets-vue": "^13.0.5","@grapecity/spread-sheets-pdf": "^13.0.5","@grapecity/spread-sheets-print": "^13.0.5","@grapecity/spread-sheets-charts": "^13.0.5","@grapecity/spread-sheets-shapes": "^13.0.5",

2、 在SpreadJS.vue文件中引入 SpreadJS 相关安装包:

import "@grapecity/spread-sheets-vue";import * as GC from "@grapecity/spread-sheets";import  "@grapecity/spread-sheets-charts";import  "@grapecity/spread-sheets-shapes";

3、 在App.vue文件中引入 SpreadJS 的样式文件、中文资源文件:

import '@grapecity/spread-sheets-resources-zh'import '@grapecity/spread-sheets/styles/gc.spread.sheets.excel2016colorful.css'

4、 List.vue文件中是主要的页面逻辑,双击文件时弹出弹框,弹框中引入了自定义的组件:

 <MySpreadJS :mySpread="mySpread" :filePath="filePath" @done="childDone" :closeSpread='closeSpread'></MySpreadJS> 

5、 mySpread变量中是从后台返回的文件流,传给MySpreadJS组件,子组件接收到数据后,调用excelIO.open方法打开Excel 文件流,

spreadInitHandle: function(spread) {    this.spread = spread;    let self = this;    let excelIO = new ExcelIO.IO();    excelIO.open(    this.spreadblob as Blob,    function(json) {        let workbookObj = json;        self.spread.fromJSON(workbookObj);    },    function(e) {        alert(e.errorMessage);    });},
excelIO.save(    curjson,    function(fileblob) {        let formData = new FormData();        formData.append("filePath", self.filePath);        formData.append("type", "update");        formData.append("excelFile", fileblob);        httpUtils.post("/filemanager/savefile", formData).then(response => {        self.$message({            type: "success",            message: "保存成功!"        });        self.$emit("done");        });},    function(e) {        //process error        console.log(e);    });

后台接口介绍

获取某路径下的文件集合:getfolder

  • 参数:path(指明文件夹路径)

获取Excel文件内容:getFile

  • 参数:filePath(指明文件路径)

保存文件:savefile

  • 参数:filePath(指明文件路径)、type(create创建文件、update更新文件)

删除文件:deletefile

  • 参数:filePath(指明文件路径)

以上就是Vue+SpringBoot+SpreadJS 实现的一个简单的在线文档,如需了解详细的实现步骤。

今天的内容就到这了,不要忘了在评论区留下的意见和建议!现电子表格控件SpreadJS正版授权限时优惠!低至3490;企业版最高立减6000元。点击解更多优惠!

标签:

声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2020年9月9日
下一篇 2020年9月9日

相关推荐

发表回复

登录后才能评论