JSUtils

工具 – 汇总

# 编码转码 - [https://imtgf2lu.pinit.eth.limo](https://imtgf2lu.pinit.eth.limo) 在线解析 base64 编码…

工具 – web-utils 常用工具导航

![2025060910005498](/wp-content/uploads/2025/06/2025060910005498.png){.alignnone} [在线访问](h…

JSUtils – 自定义EventEmitter

class EventEmitter { constructor() { this.events = {}; } on(type, handler) { if (!this.eve…

Request – 文件流下载

如何将后台的文件流下载? Axios示例 Excel 下载 axios.get(APIURL, params, { responseType: 'arraybuffer'//这也行…

JSUtils – 递归查找指定条件子节点

根据以下数据来看,层级大致为 [国家->省份->城市],是一个三级的树结构。在应用中,我们可能只会使用到里面的value和parent字段关联父子关系。 所以就有了一种…