博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ExcelJS —— Node 的 Excel 读写扩展模块2
阅读量:6438 次
发布时间:2019-06-23

本文共 1243 字,大约阅读时间需要 4 分钟。

ExcelJS 是一个 Node.js 模块,可用来读写和操作 XLSX 和 JSON 电子表格数据和样式。

<a href=https://yqfile.alicdn.com/7f79947b9c23e2893ed394ca275fab6d1f22b535.png" >

示例代码:

// Add column headers and define column keys and widths// Note: these column structures are a workbook-building convenience only,// apart from the column width, they will not be fully persisted.worksheet.columns = [    { header: "Id", key: "id", width: 10 },    { header: "Name", key: "name", width: 32 },    { header: "D.O.B.", key: "DOB", width: 10 }];// Access an individual columns by key, letter and 1-based column numbervar idCol = worksheet.getColumn("id");var nameCol = worksheet.getColumn("B");var dobCol = worksheet.getColumn(3);// set column properties// Note: will overwrite cell value C1dobCol.header = "Date of Birth";// Note: this will overwrite cell values C1:C2dobCol.header = ["Date of Birth", "A.K.A. D.O.B."];// from this point on, this column will be indexed by "dob" and not "DOB"dobCol.key = "dob";dobCol.width = 15;// iterate over all current cells in this columndobCol.eachCell(function(cell, rowNumber) {    // ...});// iterate over all current cells in this column including empty cellsdobCol.eachCell({ includeEmpty: true }, function(cell, rowNumber) {    // ...});

文章转载自 开源中国社区 [

你可能感兴趣的文章
linux sed命令
查看>>
浅谈当下网页设计趋势
查看>>
TCP 滑动窗口和 拥塞窗口
查看>>
VS2008调试程序时出现"XXX mutex not created."
查看>>
解决Java连接MySQL存储过程返回参数值为乱码问题
查看>>
c++ 字符检测 TCharacter
查看>>
MalformedObjectNameException: Invalid character '' in value part of property
查看>>
Hadoop格式化HDFS报错java.net.UnknownHostException: localhost.localdomain: localhost.localdomain
查看>>
android 40 Io编程
查看>>
编译器错误消息: CS0234: 命名空间“Purple”中不存在类型或命名空间名称“Model”(是否缺少程序集引用?)...
查看>>
天津政府应急系统之GIS一张图(arcgis api for flex)讲解(五)地图切换以及图层显示模块...
查看>>
STL之Vector(不定长数组)
查看>>
Python下科学计算包numpy和SciPy的安装【原创】
查看>>
I.MX6 android 设置 默认 动态桌面
查看>>
工作流数据库表设计-ASP.NET
查看>>
了解这23种设计模式
查看>>
linux程序调试命令strace
查看>>
代码中使用StoryBoard和DoubleAnimation的方法
查看>>
数据结构 线性表链式队列
查看>>
无法使用内置管理员账户打开Microsoft Edge
查看>>