Documentation ¶
Overview ¶
Package excel 提供了一个excel读写的封装 读取时需要注意,循环Exce.Fetch()直到返回nil就没有数据了,但是如果表格中有合并等情况,返回的row中并不能反应出来,需要自己check row中的数据
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Excel ¶
type Excel struct {
// contains filtered or unexported fields
}
Excel 操作Excel的结构
func NewReader ¶
func NewReader(file string, header []*HeaderColumn, headerlineNum int) (*Excel, error)
NewReader 创建一个Excel读操作实例 接受的 header 为表头和字段映射关系,如:{Field: "title", Title: "标题", Requre: true} headerlineNum 表头行号是第几行,默认是第1行
type HeaderColumn ¶
type HeaderColumn struct { Field string // 字段,数据映射到的数据字段名 Title string // 标题,表格中的列名称 Require bool // 是否必选 }
HeaderColumn 表头字段定义
Click to show internal directories.
Click to hide internal directories.