当前位置:首页 > 文章列表 > Golang > Go教程 > GolangXML解析:xml.Decoder与SAX对比分析

GolangXML解析:xml.Decoder与SAX对比分析

2025-07-08 14:09:26 0浏览 收藏

积累知识,胜过积蓄金银!毕竟在Golang开发的过程中,会遇到各种各样的问题,往往都是一些细节知识点还没有掌握好而导致的,因此基础知识点的积累是很重要的。下面本文《Golang高效XML解析:xml.Decoder与SAX优势解析》,就带大家讲解一下知识点,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~

使用xml.Decoder能更高效处理大XML文件的原因在于其流式解析机制。① xml.Decoder采用边读边处理的方式,避免将整个文档加载到内存;② 相比Unmarshal构建完整结构树,Decoder仅关注并解析所需节点;③ 通过DecodeElement结合结构体解析局部节点,及时跳过无关内容,减少内存占用;④ 适合处理大文件和频繁解析场景,显著降低内存开销。

Golang如何实现内存高效的XML解析 介绍xml.Decoder与SAX模式优势

Golang在处理XML数据时,如果面对的是大文件或者需要频繁解析的场景,使用常规的xml.Unmarshal方式可能会带来较大的内存开销。这是因为一次性将整个XML结构加载到内存中会占用较多资源。要实现更高效的内存使用,可以借助xml.Decoder,它采用了类似于SAX的流式解析模式,逐条读取XML内容,避免一次性加载全部数据。

Golang如何实现内存高效的XML解析 介绍xml.Decoder与SAX模式优势

为什么用xml.Decoder而不是Unmarshal?

在Go语言标准库的encoding/xml包中,有两种主要解析方式:一种是基于结构体的xml.Unmarshal,另一种是基于事件驱动的xml.Decoder
对于小文件来说,两者区别不大;但当XML文件体积较大(比如几百MB甚至更大)时,Unmarshal会导致整个文档被加载进内存,构建出完整的结构树,而xml.Decoder则是按需读取标签,边读边处理,大大节省了内存消耗。

Golang如何实现内存高效的XML解析 介绍xml.Decoder与SAX模式优势

举个例子,如果你有一个包含上万条记录的XML日志文件,使用Unmarshal需要先把它全读进来并生成一个巨大的结构体切片,而Decoder则可以在每次读到一个记录节点时处理一次,处理完即可释放这部分内存。

xml.Decoder的工作机制与使用技巧

xml.Decoder的核心思想是“边读边处理”,有点类似SAX解析器的行为。它的基本流程如下:

Golang如何实现内存高效的XML解析 介绍xml.Decoder与SAX模式优势
  • 创建一个xml.Decoder实例,通常包装一个io.Reader
  • 使用Decode方法逐步读取XML中的各个Token
  • 每次读取到开始标签、结束标签或文本内容时进行判断和处理

关键点在于只关注你关心的部分节点,跳过不需要的数据。例如,你可以监听某个特定的开始标签,一旦匹配就解析其内部的内容,忽略其他部分。

以下是一些使用建议:

  • 避免将整个文档结构保存在内存中
  • 在读取过程中及时调用decoder.Skip()跳过嵌套复杂结构
  • 处理文本内容时注意转义字符和空白符问题
  • 可以结合结构体解析局部节点,而不必完全手动拼装数据

如何编写一个内存友好的XML解析器?

假设我们要从一个大型XML文件中提取所有节点下的</code>字段,下面是一个典型的写法:</p><pre class="brush:language-go;toolbar:false;">dec := xml.NewDecoder(file) var title string for { tok, err := dec.Token() if err == io.EOF { break } if err != nil { log.Fatal(err) } switch se := tok.(type) { case xml.StartElement: if se.Name.Local == "item" { // 开始一个新的item节点 var item struct { Title string `xml:"title"` } dec.DecodeElement(&item, &se) title = item.Title fmt.Println(title) } } }</pre><p>上面这段代码虽然简单,但展示了几个关键思路:</p><ul><li>只对<code><item></code>节点做结构化解析</li><li>使用<code>DecodeElement</code>来填充结构体字段</li><li>不保留任何不相关的数据结构</li><li>整个过程没有把整个XML文件加载到内存里</li></ul><p>当然,实际使用中可能还需要处理嵌套结构、错误恢复等问题,但这种模式已经足够应对大多数场景。</p><h3>总结一下</h3><p>使用<code>xml.Decoder</code>的好处很明显:适合处理大文件,内存占用低,控制灵活。不过缺点也有,比如代码复杂度比直接<code>Unmarshal</code>高,调试也麻烦一些。所以选择哪种方式,还是要看具体的应用场景。</p><p>如果你只是处理几十KB的小配置文件,用结构体Unmarshal更省事。但如果遇到大文件,或者希望降低服务器内存压力,用<code>Decoder</code>才是更合适的选择。</p><p>今天关于《GolangXML解析:xml.Decoder与SAX对比分析》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/254464.html" title="PyCharm添加本地解释器详细教程" class="img_box"> <img src="/uploads/20250708/1751954963686cb6136633e.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="PyCharm添加本地解释器详细教程">PyCharm添加本地解释器详细教程 </a> <dl> <dt class="lineOverflow"><a href="/article/254464.html" title="PyCharm添加本地解释器详细教程" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">PyCharm添加本地解释器详细教程</dd> </dl> </div> <div class="cateItem"> <a href="/article/254466.html" title="Golang中CQS模式实现与接口设计" class="img_box"> <img src="/uploads/20250708/1751954969686cb619cf062.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Golang中CQS模式实现与接口设计"> </a> <dl> <dt class="lineOverflow"><a href="/article/254466.html" class="aBlack" title="Golang中CQS模式实现与接口设计">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">Golang中CQS模式实现与接口设计</dd> </dl> </div> </div> </div> </div> <div class="leftContBox pt0"> <div class="pdl20"> <div class="contTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit">最新文章</div> </div> </div> <ul class="newArticleList"> <li> <div class="contBox"> <a href="/article/619747.html" class="img_box" title="Go database/sql 连接池实战:别让 MaxOpenConns 把接口拖成排队机"> <img src="https://www.17golang.com/uploads/article/20260601/go-database-sql-pool-tuning-20260603151406-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go database/sql 连接池实战:别让 MaxOpenConns 把接口拖成排队机"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  5小时前  |   <a href="/articletag/729_new_0_1.html" class="aLightGray" title="性能优化">性能优化</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39699_new_0_1.html" class="aLightGray" title="后端工程">后端工程</a> · <a href="/articletag/39731_new_0_1.html" class="aLightGray" title="Golang实战">Golang实战</a> · <a href="/articletag/39735_new_0_1.html" class="aLightGray" title="database/sql">database/sql</a> · <a href="/articletag/39736_new_0_1.html" class="aLightGray" title="连接池调优">连接池调优</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="性能优化">性能优化</a> <a href="javascript:;" class="aLightGray" title="连接池">连接池</a> <a href="javascript:;" class="aLightGray" title="MaxOpenConns">MaxOpenConns</a> <a href="javascript:;" class="aLightGray" title="database/sql">database/sql</a> <a href="javascript:;" class="aLightGray" title="后端工程">后端工程</a> <a href="javascript:;" class="aLightGray" title="DBStats">DBStats</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619747.html" class="aBlack" target="_blank" title="Go database/sql 连接池实战:别让 MaxOpenConns 把接口拖成排队机">Go database/sql 连接池实战:别让 MaxOpenConns 把接口拖成排队机</a> </dt> <dd class="cont2"> <span><i class="view"></i>242浏览</span> <span class="collectBtn user_collection" data-id="619747" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619745.html" class="img_box" title="Go CrossOriginProtection 实战:别把 CSRF 防护只当成中间件"> <img src="https://www.17golang.com/uploads/article/20260601/go-cross-origin-protection-csrf-20260603142440-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go CrossOriginProtection 实战:别把 CSRF 防护只当成中间件"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  6小时前  |   <a href="/articletag/4723_new_0_1.html" class="aLightGray" title="web安全">web安全</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39699_new_0_1.html" class="aLightGray" title="后端工程">后端工程</a> · <a href="/articletag/39731_new_0_1.html" class="aLightGray" title="Golang实战">Golang实战</a> · <a href="/articletag/39732_new_0_1.html" class="aLightGray" title="net/http">net/http</a> · <a href="/articletag/39734_new_0_1.html" class="aLightGray" title="CSRF">CSRF</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="安全">安全</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="net/http">net/http</a> <a href="javascript:;" class="aLightGray" title="HTTP服务">HTTP服务</a> <a href="javascript:;" class="aLightGray" title="csrf">csrf</a> <a href="javascript:;" class="aLightGray" title="Go1.25">Go1.25</a> <a href="javascript:;" class="aLightGray" title="CrossOriginProtection">CrossOriginProtection</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619745.html" class="aBlack" target="_blank" title="Go CrossOriginProtection 实战:别把 CSRF 防护只当成中间件">Go CrossOriginProtection 实战:别把 CSRF 防护只当成中间件</a> </dt> <dd class="cont2"> <span><i class="view"></i>183浏览</span> <span class="collectBtn user_collection" data-id="619745" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619743.html" class="img_box" title="Go HTTP 优雅关闭实战:别让 SIGTERM 变成半截请求"> <img src="https://www.17golang.com/uploads/article/20260601/go-http-graceful-shutdown-20260603092833-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go HTTP 优雅关闭实战:别让 SIGTERM 变成半截请求"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  7小时前  |   <a href="/articletag/2495_new_0_1.html" class="aLightGray" title="优雅关闭">优雅关闭</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39699_new_0_1.html" class="aLightGray" title="后端工程">后端工程</a> · <a href="/articletag/39731_new_0_1.html" class="aLightGray" title="Golang实战">Golang实战</a> · <a href="/articletag/39732_new_0_1.html" class="aLightGray" title="net/http">net/http</a> · <a href="/articletag/39733_new_0_1.html" class="aLightGray" title="服务治理">服务治理</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="shutdown">shutdown</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="net/http">net/http</a> <a href="javascript:;" class="aLightGray" title="HTTP服务">HTTP服务</a> <a href="javascript:;" class="aLightGray" title="优雅关闭">优雅关闭</a> <a href="javascript:;" class="aLightGray" title="SIGTERM">SIGTERM</a> <a href="javascript:;" class="aLightGray" title="生产实践">生产实践</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619743.html" class="aBlack" target="_blank" title="Go HTTP 优雅关闭实战:别让 SIGTERM 变成半截请求">Go HTTP 优雅关闭实战:别让 SIGTERM 变成半截请求</a> </dt> <dd class="cont2"> <span><i class="view"></i>135浏览</span> <span class="collectBtn user_collection" data-id="619743" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619738.html" class="img_box" title="Go race detector 实战:别让数据竞争混进线上服务"> <img src="https://www.17golang.com/uploads/article/20260601/go-race-detector-data-race-20260602151918-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go race detector 实战:别让数据竞争混进线上服务"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  17小时前  |   <a href="/articletag/1138_new_0_1.html" class="aLightGray" title="并发编程">并发编程</a> · <a href="/articletag/1601_new_0_1.html" class="aLightGray" title="数据竞争">数据竞争</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39688_new_0_1.html" class="aLightGray" title="生产实践">生产实践</a> · <a href="/articletag/39725_new_0_1.html" class="aLightGray" title="race detector">race detector</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="数据竞争">数据竞争</a> <a href="javascript:;" class="aLightGray" title="并发">并发</a> <a href="javascript:;" class="aLightGray" title="sync">sync</a> <a href="javascript:;" class="aLightGray" title="atomic">atomic</a> <a href="javascript:;" class="aLightGray" title="race detector">race detector</a> <a href="javascript:;" class="aLightGray" title="go test -race">go test -race</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619738.html" class="aBlack" target="_blank" title="Go race detector 实战:别让数据竞争混进线上服务">Go race detector 实战:别让数据竞争混进线上服务</a> </dt> <dd class="cont2"> <span><i class="view"></i>147浏览</span> <span class="collectBtn user_collection" data-id="619738" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619724.html" class="img_box" title="Go rand/v2 实战:抽奖、灰度和测试随机数别再混着用"> <img src="https://www.17golang.com/uploads/article/20260601/go-rand-v2-20260602102056-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go rand/v2 实战:抽奖、灰度和测试随机数别再混着用"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  1天前  |   <a href="/articletag/172_new_0_1.html" class="aLightGray" title="标准库">标准库</a> · <a href="/articletag/487_new_0_1.html" class="aLightGray" title="随机数">随机数</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39688_new_0_1.html" class="aLightGray" title="生产实践">生产实践</a> · <a href="/articletag/39706_new_0_1.html" class="aLightGray" title="测试实践">测试实践</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="测试">测试</a> <a href="javascript:;" class="aLightGray" title="随机数">随机数</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="math/rand">math/rand</a> <a href="javascript:;" class="aLightGray" title="灰度">灰度</a> <a href="javascript:;" class="aLightGray" title="rand/v2">rand/v2</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619724.html" class="aBlack" target="_blank" title="Go rand/v2 实战:抽奖、灰度和测试随机数别再混着用">Go rand/v2 实战:抽奖、灰度和测试随机数别再混着用</a> </dt> <dd class="cont2"> <span><i class="view"></i>311浏览</span> <span class="collectBtn user_collection" data-id="619724" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619723.html" class="img_box" title="Go unique 实战:别再用全局 map 硬做字符串去重"> <img src="https://www.17golang.com/uploads/article/20260601/go-unique-handle-20260602100956-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go unique 实战:别再用全局 map 硬做字符串去重"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  1天前  |   <a href="/articletag/172_new_0_1.html" class="aLightGray" title="标准库">标准库</a> · <a href="/articletag/729_new_0_1.html" class="aLightGray" title="性能优化">性能优化</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39688_new_0_1.html" class="aLightGray" title="生产实践">生产实践</a> · <a href="/articletag/39694_new_0_1.html" class="aLightGray" title="内存优化">内存优化</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="unique">unique</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="内存优化">内存优化</a> <a href="javascript:;" class="aLightGray" title="Handle">Handle</a> <a href="javascript:;" class="aLightGray" title="值规范化">值规范化</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619723.html" class="aBlack" target="_blank" title="Go unique 实战:别再用全局 map 硬做字符串去重">Go unique 实战:别再用全局 map 硬做字符串去重</a> </dt> <dd class="cont2"> <span><i class="view"></i>324浏览</span> <span class="collectBtn user_collection" data-id="619723" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619722.html" class="img_box" title="Go FIPS 140-3 实战:别把合规开关当成一行环境变量"> <img src="https://www.17golang.com/uploads/article/20260601/go-fips140-compliance-20260602095439-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go FIPS 140-3 实战:别把合规开关当成一行环境变量"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  1天前  |   <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39693_new_0_1.html" class="aLightGray" title="Go1.24">Go1.24</a> · <a href="/articletag/39703_new_0_1.html" class="aLightGray" title="FIPS">FIPS</a> · <a href="/articletag/39704_new_0_1.html" class="aLightGray" title="安全合规">安全合规</a> · <a href="/articletag/39705_new_0_1.html" class="aLightGray" title="Go1.26">Go1.26</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="合规">合规</a> <a href="javascript:;" class="aLightGray" title="后端安全">后端安全</a> <a href="javascript:;" class="aLightGray" title="FIPS 140-3">FIPS 140-3</a> <a href="javascript:;" class="aLightGray" title="GOFIPS140">GOFIPS140</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619722.html" class="aBlack" target="_blank" title="Go FIPS 140-3 实战:别把合规开关当成一行环境变量">Go FIPS 140-3 实战:别把合规开关当成一行环境变量</a> </dt> <dd class="cont2"> <span><i class="view"></i>203浏览</span> <span class="collectBtn user_collection" data-id="619722" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619721.html" class="img_box" title="Go crypto/mlkem 实战:后量子密钥交换别自己瞎拼协议"> <img src="https://www.17golang.com/uploads/article/20260601/go-crypto-mlkem-20260602093919-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go crypto/mlkem 实战:后量子密钥交换别自己瞎拼协议"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  1天前  |   <a href="/articletag/1364_new_0_1.html" class="aLightGray" title="安全">安全</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39693_new_0_1.html" class="aLightGray" title="Go1.24">Go1.24</a> · <a href="/articletag/39699_new_0_1.html" class="aLightGray" title="后端工程">后端工程</a> · <a href="/articletag/39702_new_0_1.html" class="aLightGray" title="密码学">密码学</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="crypto">crypto</a> <a href="javascript:;" class="aLightGray" title="mlkem">mlkem</a> <a href="javascript:;" class="aLightGray" title="后量子">后量子</a> <a href="javascript:;" class="aLightGray" title="密钥交换">密钥交换</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619721.html" class="aBlack" target="_blank" title="Go crypto/mlkem 实战:后量子密钥交换别自己瞎拼协议">Go crypto/mlkem 实战:后量子密钥交换别自己瞎拼协议</a> </dt> <dd class="cont2"> <span><i class="view"></i>413浏览</span> <span class="collectBtn user_collection" data-id="619721" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619720.html" class="img_box" title="Go os.Root 实战:文件上传和解压,别再让 ../ 偷偷逃出目录"> <img src="https://www.17golang.com/uploads/article/20260601/go-os-root-openinroot-20260602092851-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go os.Root 实战:文件上传和解压,别再让 ../ 偷偷逃出目录"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  1天前  |   <a href="/articletag/616_new_0_1.html" class="aLightGray" title="文件上传">文件上传</a> · <a href="/articletag/1364_new_0_1.html" class="aLightGray" title="安全">安全</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39693_new_0_1.html" class="aLightGray" title="Go1.24">Go1.24</a> · <a href="/articletag/39699_new_0_1.html" class="aLightGray" title="后端工程">后端工程</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="文件安全">文件安全</a> <a href="javascript:;" class="aLightGray" title="路径遍历">路径遍历</a> <a href="javascript:;" class="aLightGray" title="os.Root">os.Root</a> <a href="javascript:;" class="aLightGray" title="OpenInRoot">OpenInRoot</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619720.html" class="aBlack" target="_blank" title="Go os.Root 实战:文件上传和解压,别再让 ../ 偷偷逃出目录">Go os.Root 实战:文件上传和解压,别再让 ../ 偷偷逃出目录</a> </dt> <dd class="cont2"> <span><i class="view"></i>144浏览</span> <span class="collectBtn user_collection" data-id="619720" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619719.html" class="img_box" title="Go 1.25 testing.Attr 实战:别让 CI 测试报告只剩一堆失败日志"> <img src="https://www.17golang.com/uploads/article/20260601/go-testing-attr-output-20260602091615-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.25 testing.Attr 实战:别让 CI 测试报告只剩一堆失败日志"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  1天前  |   <a href="/articletag/437_new_0_1.html" class="aLightGray" title="测试">测试</a> · <a href="/articletag/15433_new_0_1.html" class="aLightGray" title="CI">CI</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39690_new_0_1.html" class="aLightGray" title="Go1.25">Go1.25</a> · <a href="/articletag/39701_new_0_1.html" class="aLightGray" title="工程实践">工程实践</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="CI">CI</a> <a href="javascript:;" class="aLightGray" title="Testing">Testing</a> <a href="javascript:;" class="aLightGray" title="Go test">Go test</a> <a href="javascript:;" class="aLightGray" title="Go1.25">Go1.25</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619719.html" class="aBlack" target="_blank" title="Go 1.25 testing.Attr 实战:别让 CI 测试报告只剩一堆失败日志">Go 1.25 testing.Attr 实战:别让 CI 测试报告只剩一堆失败日志</a> </dt> <dd class="cont2"> <span><i class="view"></i>478浏览</span> <span class="collectBtn user_collection" data-id="619719" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619718.html" class="img_box" title="Go 1.25 go vet 实战:把 WaitGroup 和 HostPort 坑挡在 CI 里"> <img src="https://www.17golang.com/uploads/article/20260601/go-vet-125-waitgroup-hostport-20260602010105-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.25 go vet 实战:把 WaitGroup 和 HostPort 坑挡在 CI 里"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  1天前  |   <a href="/articletag/1138_new_0_1.html" class="aLightGray" title="并发编程">并发编程</a> · <a href="/articletag/15433_new_0_1.html" class="aLightGray" title="CI">CI</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39690_new_0_1.html" class="aLightGray" title="Go1.25">Go1.25</a> · <a href="/articletag/39700_new_0_1.html" class="aLightGray" title="代码质量">代码质量</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="WaitGroup">WaitGroup</a> <a href="javascript:;" class="aLightGray" title="Go1.25">Go1.25</a> <a href="javascript:;" class="aLightGray" title="go vet">go vet</a> <a href="javascript:;" class="aLightGray" title="HostPort">HostPort</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619718.html" class="aBlack" target="_blank" title="Go 1.25 go vet 实战:把 WaitGroup 和 HostPort 坑挡在 CI 里">Go 1.25 go vet 实战:把 WaitGroup 和 HostPort 坑挡在 CI 里</a> </dt> <dd class="cont2"> <span><i class="view"></i>185浏览</span> <span class="collectBtn user_collection" data-id="619718" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619717.html" class="img_box" title="Go 1.25 Green Tea GC 实战:别急着全量开启,先把 GC 成本测明白"> <img src="https://www.17golang.com/uploads/article/20260601/go-green-tea-gc-20260602005125-cover.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.25 Green Tea GC 实战:别急着全量开启,先把 GC 成本测明白"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/25_new_0_1.html" class="aLightGray" title="Golang">Golang</a> · <a href="/articlelist/44_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a>   |  1天前  |   <a href="/articletag/729_new_0_1.html" class="aLightGray" title="性能优化">性能优化</a> · <a href="/articletag/1597_new_0_1.html" class="aLightGray" title="GC">GC</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39688_new_0_1.html" class="aLightGray" title="生产实践">生产实践</a> · <a href="/articletag/39690_new_0_1.html" class="aLightGray" title="Go1.25">Go1.25</a> · <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="性能优化">性能优化</a> <a href="javascript:;" class="aLightGray" title="GC">GC</a> <a href="javascript:;" class="aLightGray" title="Go1.25">Go1.25</a> <a href="javascript:;" class="aLightGray" title="GreenTea">GreenTea</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619717.html" class="aBlack" target="_blank" title="Go 1.25 Green Tea GC 实战:别急着全量开启,先把 GC 成本测明白">Go 1.25 Green Tea GC 实战:别急着全量开启,先把 GC 成本测明白</a> </dt> <dd class="cont2"> <span><i class="view"></i>128浏览</span> <span class="collectBtn user_collection" data-id="619717" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> </ul> </div> </div> <div class="mainRight"> <!-- 右侧广告位banner --> <div class="rightContBox" style="margin-top: 0px;"> <div class="rightTit"> <a href="/courselist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">课程推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/course/9.html" class="img_box" target="_blank" title="前端进阶之JavaScript设计模式"> <img src="/uploads/20221222/52fd0f23a454c71029c2c72d206ed815.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="前端进阶之JavaScript设计模式"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/9.html" target="_blank" class="aBlack" title="前端进阶之JavaScript设计模式">前端进阶之JavaScript设计模式</a></dt> <dd class="cont1 lineTwoOverflow"> 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。 </dd> <dd class="cont2">543次学习</dd> </dl> </li> <li> <a href="/course/2.html" class="img_box" target="_blank" title="GO语言核心编程课程"> <img src="/uploads/20221221/634ad7404159bfefc6a54a564d437b5f.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="GO语言核心编程课程"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/2.html" target="_blank" class="aBlack" title="GO语言核心编程课程">GO语言核心编程课程</a></dt> <dd class="cont1 lineTwoOverflow"> 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。 </dd> <dd class="cont2">516次学习</dd> </dl> </li> <li> <a href="/course/74.html" class="img_box" target="_blank" title="简单聊聊mysql8与网络通信"> <img src="/uploads/20240103/bad35fe14edbd214bee16f88343ac57c.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="简单聊聊mysql8与网络通信"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/74.html" target="_blank" class="aBlack" title="简单聊聊mysql8与网络通信">简单聊聊mysql8与网络通信</a></dt> <dd class="cont1 lineTwoOverflow"> 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让 </dd> <dd class="cont2">500次学习</dd> </dl> </li> <li> <a href="/course/57.html" class="img_box" target="_blank" title="JavaScript正则表达式基础与实战"> <img src="/uploads/20221226/bbe4083bb3cb0dd135fb02c31c3785fb.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="JavaScript正则表达式基础与实战"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/57.html" target="_blank" class="aBlack" title="JavaScript正则表达式基础与实战">JavaScript正则表达式基础与实战</a></dt> <dd class="cont1 lineTwoOverflow"> 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。 </dd> <dd class="cont2">487次学习</dd> </dl> </li> <li> <a href="/course/28.html" class="img_box" target="_blank" title="从零制作响应式网站—Grid布局"> <img src="/uploads/20221223/ac110f88206daeab6c0cf38ebf5fe9ed.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="从零制作响应式网站—Grid布局"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/28.html" target="_blank" class="aBlack" title="从零制作响应式网站—Grid布局">从零制作响应式网站—Grid布局</a></dt> <dd class="cont1 lineTwoOverflow"> 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。 </dd> <dd class="cont2">485次学习</dd> </dl> </li> </ul> </div> <div class="rightContBox"> <div class="rightTit"> <a href="/ai.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">AI推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/ai/13100.html" target="_blank" title="ChatExcel酷表:告别Excel难题,北大团队AI助手助您轻松处理数据" class="img_box"> <img src="/uploads/20251027/176155320368ff2b3345c06.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="ChatExcel酷表:告别Excel难题,北大团队AI助手助您轻松处理数据" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13100.html" class="aBlack" target="_blank" title="ChatExcel酷表">ChatExcel酷表</a></dt> <dd class="cont1 lineTwoOverflow"> ChatExcel酷表是由北京大学团队打造的Excel聊天机器人,用自然语言操控表格,简化数据处理,告别繁琐操作,提升工作效率!适用于学生、上班族及政府人员。 </dd> <dd class="cont2">5916次使用</dd> </dl> </li> <li> <a href="/ai/13099.html" target="_blank" title="Any绘本:开源免费AI绘本创作工具深度解析" class="img_box"> <img src="/uploads/20251023/176120760368f9e5333da5f.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Any绘本:开源免费AI绘本创作工具深度解析" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13099.html" class="aBlack" target="_blank" title="Any绘本">Any绘本</a></dt> <dd class="cont1 lineTwoOverflow"> 探索Any绘本(anypicturebook.com/zh),一款开源免费的AI绘本创作工具,基于Google Gemini与Flux AI模型,让您轻松创作个性化绘本。适用于家庭、教育、创作等多种场景,零门槛,高自由度,技术透明,本地可控。 </dd> <dd class="cont2">6345次使用</dd> </dl> </li> <li> <a href="/ai/13098.html" target="_blank" title="可赞AI:AI驱动办公可视化智能工具,一键高效生成文档图表脑图" class="img_box"> <img src="/uploads/20251021/176103600268f746e238bb8.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="可赞AI:AI驱动办公可视化智能工具,一键高效生成文档图表脑图" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13098.html" class="aBlack" target="_blank" title="可赞AI">可赞AI</a></dt> <dd class="cont1 lineTwoOverflow"> 可赞AI,AI驱动的办公可视化智能工具,助您轻松实现文本与可视化元素高效转化。无论是智能文档生成、多格式文本解析,还是一键生成专业图表、脑图、知识卡片,可赞AI都能让信息处理更清晰高效。覆盖数据汇报、会议纪要、内容营销等全场景,大幅提升办公效率,降低专业门槛,是您提升工作效率的得力助手。 </dd> <dd class="cont2">6155次使用</dd> </dl> </li> <li> <a href="/ai/13097.html" target="_blank" title="星月写作:AI网文创作神器,助力爆款小说速成" class="img_box"> <img src="/uploads/20251014/176043000368ee07b3159d6.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="星月写作:AI网文创作神器,助力爆款小说速成" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13097.html" class="aBlack" target="_blank" title="星月写作">星月写作</a></dt> <dd class="cont1 lineTwoOverflow"> 星月写作是国内首款聚焦中文网络小说创作的AI辅助工具,解决网文作者从构思到变现的全流程痛点。AI扫榜、专属模板、全链路适配,助力新人快速上手,资深作者效率倍增。 </dd> <dd class="cont2">8129次使用</dd> </dl> </li> <li> <a href="/ai/13096.html" target="_blank" title="MagicLight.ai:叙事驱动AI动画视频创作平台 | 高效生成专业级故事动画" class="img_box"> <img src="/uploads/20251014/176040000268ed9282edf80.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="MagicLight.ai:叙事驱动AI动画视频创作平台 | 高效生成专业级故事动画" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13096.html" class="aBlack" target="_blank" title="MagicLight">MagicLight</a></dt> <dd class="cont1 lineTwoOverflow"> MagicLight.ai是全球首款叙事驱动型AI动画视频创作平台,专注于解决从故事想法到完整动画的全流程痛点。它通过自研AI模型,保障角色、风格、场景高度一致性,让零动画经验者也能高效产出专业级叙事内容。广泛适用于独立创作者、动画工作室、教育机构及企业营销,助您轻松实现创意落地与商业化。 </dd> <dd class="cont2">6686次使用</dd> </dl> </li> </ul> </div> <!-- 相关文章 --> <div class="rightContBox"> <div class="rightTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">相关文章</div> </div> <ul class="aboutArticleRList"> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/10762.html" class="aBlack" title="Golangmap实践及实现原理解析">Golangmap实践及实现原理解析</a></dt> <dd> <span class="left">2022-12-28</span> <span class="right">505浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/80612.html" class="aBlack" title="go和golang的区别解析:帮你选择合适的编程语言">go和golang的区别解析:帮你选择合适的编程语言</a></dt> <dd> <span class="left">2023-12-29</span> <span class="right">503浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/11451.html" class="aBlack" title="试了下Golang实现try catch的方法">试了下Golang实现try catch的方法</a></dt> <dd> <span class="left">2022-12-27</span> <span class="right">502浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/53565.html" class="aBlack" title="如何在go语言中实现高并发的服务器架构">如何在go语言中实现高并发的服务器架构</a></dt> <dd> <span class="left">2023-08-27</span> <span class="right">502浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/72902.html" class="aBlack" title="提升工作效率的Go语言项目开发经验分享">提升工作效率的Go语言项目开发经验分享</a></dt> <dd> <span class="left">2023-11-03</span> <span class="right">502浏览</span> </dd> </dl> </li> </ul> </div> </div> </div> <div class="footer"> <div class="footerIn"> <div class="footLeft"> <div class="linkBox"> <a href="/about/1.html" target="_blank" class="aBlack" title="关于我们">关于我们</a> <a href="/about/5.html" target="_blank" class="aBlack" title="免责声明">免责声明</a> <a href="#" class="aBlack" title="意见反馈">意见反馈</a> <a href="/about/2.html" class="aBlack" target="_blank" title="联系我们">联系我们</a> <a href="/send.html" class="aBlack" title="广告合作">内容提交</a> </div> <div class="footTip">Golang学习网:公益在线Go学习平台,帮助Go学习者快速成长!</div> <div class="shareBox"> <span><i class="qq"></i>技术交流群</span> </div> <div class="copyRight"> Copyright 2023 http://www.17golang.com/ All Rights Reserved | <a href="https://beian.miit.gov.cn/" target="_blank" title="备案">苏ICP备2023003363号-1</a> </div> </div> <div class="footRight"> <ul class="encodeList"> <li> <div class="encodeImg"> <img src="/assets/examples/qrcode_for_gh.jpg" alt="Golang学习网"> </div> <div class="tit">关注公众号</div> <div class="tip">Golang学习网</div> </li> <div class="clear"></div> </ul> </div> <div class="clear"></div> </div> </div> <!-- 微信登录弹窗 --> <style> .popupBg .n-error{ color: red; } </style> <div class="popupBg"> <div class="loginBoxBox"> <div class="imgbg"> <img src="/assets/images/leftlogo.jpg" alt=""> </div> <!-- 微信登录 --> <div class="loginInfo encodeLogin" style="display: none;"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.passwordLogin').show();"> <div class="tip">密码登录在这里</div> </div> <div class="encodeInfo"> <div class="tit"><i></i> 微信扫码登录或注册</div> <div class="encodeImg"> <span id="wx_login_qrcode"><img src="/assets/examples/code.png" alt="二维码"></span> <!-- <div class="refreshBox"> <p>二维码失效</p> <button type="button" class="create_wxqrcode">刷新1111</button> </div> --> </div> <div class="tip">打开微信扫一扫,快速登录/注册</div> </div> <div class="beforeLoginTip">登录即同意 <a href="#" class="aBlue" title="用户协议">用户协议</a> 和 <a href="#" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 密码登录 --> <div class="loginInfo passwordLogin"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.encodeLogin').show();"> <div class="tip">微信登录更方便</div> </div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem loginFormLi curr">密码登录</li> <li class="selfTabItem registerFormBox ">注册账号</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont loginFormBox" style="display: block;"> <form name="form" id="login-form" class="form-vertical form" method="POST" action="/index/user/login"> <input type="hidden" name="url" value="//17golang.com/article/254465.html"/> <input type="hidden" name="__token__" value="2f7ef558998c384a2824bb66a68b2cf9" /> <div class="form-group" style="height:70px;"> <input class="form-control" id="account" type="text" name="account" value="" data-rule="required" placeholder="邮箱/用户名" autocomplete="off"> </div> <div class="form-group" style="height:70px;"> <input class="form-control" id="password" type="password" name="password" data-rule="required;password" placeholder="密码" autocomplete="off"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="other"> <a href="#" class="forgetPwd aGray" onclick="$('.loginInfo').hide();$('.passwordForget').show();" title="忘记密码">忘记密码</a> </div> <div class="loginBtn mt25"> <button type="submit">登录</button> </div> </form> </div> <div class="selfTabCont registerFormBox" style="display: none;"> <form name="form1" id="register-form" class="form-vertical form" method="POST" action="/index/user/register"> <input type="hidden" name="invite_user_id" value="0"/> <input type="hidden" name="url" value="//17golang.com/article/254465.html"/> <input type="hidden" name="__token__" value="2f7ef558998c384a2824bb66a68b2cf9" /> <div class="form-group" style="height:70px;"> <input type="text" name="email" id="email2" data-rule="required;email" class="form-control" placeholder="邮箱"> </div> <div class="form-group" style="height:70px;"> <input type="text" id="username" name="username" data-rule="required;username" class="form-control" placeholder="用户名必须3-30个字符"> </div> <div class="form-group" style="height:70px;"> <input type="password" id="password2" name="password" data-rule="required;password" class="form-control" placeholder="密码必须6-30个字符"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="loginBtn"> <button type="submit">注册</button> </div> </form> </div> </div> </div> <div class="beforeLoginTip">登录即同意 <a href="https://www.17golang.com/about/3.html" target="_blank" class="aBlue" title="用户协议">用户协议</a> 和 <a href="https://www.17golang.com/about/4.html" target="_blank" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 重置密码 --> <div class="loginInfo passwordForget"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="returnLogin cursorPointer" onclick="$('.passwordForget').hide();$('.passwordLogin').show();">返回登录</div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem">重置密码</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont"> <form id="resetpwd-form" class="form-horizontal form-layer nice-validator n-default n-bootstrap form" method="POST" action="/api/user/resetpwd.html" novalidate="novalidate"> <div style="height:70px;"> <input type="text" class="form-control" id="email" name="email" value="" placeholder="输入邮箱" aria-invalid="true"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <a href="javascript:;" class="btn btn-primary btn-captcha cursorPointer" style="background: #2080F8; border-radius: 4px; color: #fff; padding: 12px; position: absolute;" data-url="/api/ems/send.html" data-type="email" data-event="resetpwd">发送验证码</a> </span> </div> <input type="password" class="form-control" id="newpassword" name="newpassword" value="" placeholder="请输入6-18位密码"> <div class="loginBtn mt25"> <button type="submit">重置密码</button> </div> </form> </div> </div> </div> </div> </div> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?3dc5666f6478c7bf39cd5c91e597423d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/require.js" data-main="/assets/js/require-frontend.js?v=1671101972"></script> </body> </html>