mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-23 19:00:24 +08:00
21 lines
691 B
Markdown
21 lines
691 B
Markdown
## 工具方法
|
||
|
||
HotGo还提供一些系统中常用的工具库方法,在这里简单说明:
|
||
|
||
```
|
||
/server
|
||
├── utility
|
||
│ ├── charset # 字符串处理
|
||
│ ├── convert # 数据类型转换
|
||
│ ├── encrypt # 数据加密/解密
|
||
│ ├── excel # 电子表格导出/导入
|
||
│ ├── file # 文件/目录处理
|
||
│ ├── format # 数据格式化
|
||
│ ├── simple # 一些简捷函数
|
||
│ ├── tree # 树形结构
|
||
│ ├── url # URL处理
|
||
│ ├── useragent # 请求头代理处理
|
||
└── └── validate # 数据验证
|
||
```
|
||
|