当前位置:首页 > 文章列表 > Golang > Go教程 > Golang高效XML解析技巧分享

Golang高效XML解析技巧分享

2025-09-07 10:13:45 0浏览 收藏

在Golang中处理大型XML文件时,传统的`xml.Unmarshal`方法可能会因一次性加载整个文档到内存而导致较高的内存开销。本文将深入探讨如何利用`xml.Decoder`实现内存高效的XML解析。`xml.Decoder`采用流式解析机制,边读边处理,避免了将整个XML文档加载到内存,显著降低内存占用。通过`DecodeElement`结合结构体解析局部节点,并及时跳过无关内容,进一步优化内存使用。本文将详细介绍`xml.Decoder`的工作机制、使用技巧,并通过实例展示如何编写一个内存友好的XML解析器,特别适用于处理大文件和频繁解析的场景,从而有效降低服务器内存压力,提升程序性能。

使用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>文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《Golang高效XML解析技巧分享》文章吧,也可关注golang学习网公众号了解相关技术文章。</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/308535.html" title="Excel调整行高列宽方法详解" class="img_box"> <img src="/uploads/20250907/175721114768bcea0b53ba0.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Excel调整行高列宽方法详解">Excel调整行高列宽方法详解 </a> <dl> <dt class="lineOverflow"><a href="/article/308535.html" title="Excel调整行高列宽方法详解" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">Excel调整行高列宽方法详解</dd> </dl> </div> <div class="cateItem"> <a href="/article/308537.html" title="美图秀秀多图拼接教程与图片插入技巧" class="img_box"> <img src="/uploads/20250907/175721127768bcea8d56e79.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="美图秀秀多图拼接教程与图片插入技巧"> </a> <dl> <dt class="lineOverflow"><a href="/article/308537.html" class="aBlack" title="美图秀秀多图拼接教程与图片插入技巧">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">美图秀秀多图拼接教程与图片插入技巧</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/623883.html" class="img_box" title="Go 1.27 go 命令不再支持 bzr:旧模块源怎么迁移"> <img src="/uploads/20260901/1788275892-bzr-fetch-boundary.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 go 命令不再支持 bzr:旧模块源怎么迁移"> </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>   |  2小时前  |   <a href="/articletag/109_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/40264_new_0_1.html" class="aLightGray" title="Go Modules">Go Modules</a> · <a href="javascript:;" class="aLightGray" title="GOPROXY">GOPROXY</a> <a href="javascript:;" class="aLightGray" title="模块迁移">模块迁移</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="bzr">bzr</a> <a href="javascript:;" class="aLightGray" title="GOVCS">GOVCS</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623883.html" class="aBlack" target="_blank" title="Go 1.27 go 命令不再支持 bzr:旧模块源怎么迁移">Go 1.27 go 命令不再支持 bzr:旧模块源怎么迁移</a> </dt> <dd class="cont2"> <span><i class="view"></i>331浏览</span> <span class="collectBtn user_collection" data-id="623883" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623882.html" class="img_box" title="Go 1.27 ecdsa.PrivateKey.Sign 为什么检查哈希长度:SignerOpts 约束"> <img src="/uploads/20260901/1788275224-ecdsa-sign-audit-map.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 ecdsa.PrivateKey.Sign 为什么检查哈希长度:SignerOpts 约束"> </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>   |  2小时前  |   <a href="/articletag/6051_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/40534_new_0_1.html" class="aLightGray" title="Go安全">Go安全</a> · <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="crypto/ecdsa">crypto/ecdsa</a> <a href="javascript:;" class="aLightGray" title="PrivateKey.Sign">PrivateKey.Sign</a> <a href="javascript:;" class="aLightGray" title="SignerOpts">SignerOpts</a> <a href="javascript:;" class="aLightGray" title="哈希长度">哈希长度</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623882.html" class="aBlack" target="_blank" title="Go 1.27 ecdsa.PrivateKey.Sign 为什么检查哈希长度:SignerOpts 约束">Go 1.27 ecdsa.PrivateKey.Sign 为什么检查哈希长度:SignerOpts 约束</a> </dt> <dd class="cont2"> <span><i class="view"></i>212浏览</span> <span class="collectBtn user_collection" data-id="623882" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623880.html" class="img_box" title="Go 1.27 math/big.Int Divide 怎么选舍入:Trunc、Floor、Round 与 Ceil"> <img src="/uploads/20260901/1788269735-big-int-divide-modes.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 math/big.Int Divide 怎么选舍入:Trunc、Floor、Round 与 Ceil"> </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>   |  3小时前  |   <a href="/articletag/172_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/42551_new_0_1.html" class="aLightGray" title="整数计算">整数计算</a> · <a href="javascript:;" class="aLightGray" title="math/big">math/big</a> <a href="javascript:;" class="aLightGray" title="RoundingMode">RoundingMode</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="整数除法">整数除法</a> <a href="javascript:;" class="aLightGray" title="Int.Divide">Int.Divide</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623880.html" class="aBlack" target="_blank" title="Go 1.27 math/big.Int Divide 怎么选舍入:Trunc、Floor、Round 与 Ceil">Go 1.27 math/big.Int Divide 怎么选舍入:Trunc、Floor、Round 与 Ceil</a> </dt> <dd class="cont2"> <span><i class="view"></i>202浏览</span> <span class="collectBtn user_collection" data-id="623880" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623876.html" class="img_box" title="Go 1.27 已移除的 GODEBUG 还能写吗:最终默认值兼容规则"> <img src="/uploads/20260901/1788256851-godebug-config-structure.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 已移除的 GODEBUG 还能写吗:最终默认值兼容规则"> </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/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39952_new_0_1.html" class="aLightGray" title="版本升级">版本升级</a> · <a href="/articletag/40476_new_0_1.html" class="aLightGray" title="兼容性">兼容性</a> · <a href="javascript:;" class="aLightGray" title="go.mod">go.mod</a> <a href="javascript:;" class="aLightGray" title="GODEBUG">GODEBUG</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="asynctimerchan">asynctimerchan</a> <a href="javascript:;" class="aLightGray" title="go:debug">go:debug</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623876.html" class="aBlack" target="_blank" title="Go 1.27 已移除的 GODEBUG 还能写吗:最终默认值兼容规则">Go 1.27 已移除的 GODEBUG 还能写吗:最终默认值兼容规则</a> </dt> <dd class="cont2"> <span><i class="view"></i>318浏览</span> <span class="collectBtn user_collection" data-id="623876" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623869.html" class="img_box" title="Go 1.27 HTTP 请求头上限怎么设计:MaxHeaderValueCount 与 MaxHeaderBytes 配合"> <img src="/uploads/20260901/1788249459-header-limit-dimensions.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 HTTP 请求头上限怎么设计:MaxHeaderValueCount 与 MaxHeaderBytes 配合"> </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>   |  9小时前  |   <a href="/articletag/1217_new_0_1.html" class="aLightGray" title="HTTP服务">HTTP服务</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39770_new_0_1.html" class="aLightGray" title="接口设计">接口设计</a> · <a href="javascript:;" class="aLightGray" title="net/http">net/http</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="MaxHeaderValueCount">MaxHeaderValueCount</a> <a href="javascript:;" class="aLightGray" title="MaxHeaderBytes">MaxHeaderBytes</a> <a href="javascript:;" class="aLightGray" title="HTTP安全">HTTP安全</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623869.html" class="aBlack" target="_blank" title="Go 1.27 HTTP 请求头上限怎么设计:MaxHeaderValueCount 与 MaxHeaderBytes 配合">Go 1.27 HTTP 请求头上限怎么设计:MaxHeaderValueCount 与 MaxHeaderBytes 配合</a> </dt> <dd class="cont2"> <span><i class="view"></i>376浏览</span> <span class="collectBtn user_collection" data-id="623869" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623834.html" class="img_box" title="Go 1.27 go/scanner.Scanner.End 怎么定位 token 末端:起止位置与诊断范围"> <img src="/uploads/20260901/1788221737-scanner-end-position.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 go/scanner.Scanner.End 怎么定位 token 末端:起止位置与诊断范围"> </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/172_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/39808_new_0_1.html" class="aLightGray" title="工具开发">工具开发</a> · <a href="/articletag/40514_new_0_1.html" class="aLightGray" title="错误定位">错误定位</a> · <a href="/articletag/42540_new_0_1.html" class="aLightGray" title="语法分析">语法分析</a> · <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="go/scanner">go/scanner</a> <a href="javascript:;" class="aLightGray" title="Scanner.End">Scanner.End</a> <a href="javascript:;" class="aLightGray" title="token.Pos">token.Pos</a> <a href="javascript:;" class="aLightGray" title="语法诊断">语法诊断</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623834.html" class="aBlack" target="_blank" title="Go 1.27 go/scanner.Scanner.End 怎么定位 token 末端:起止位置与诊断范围">Go 1.27 go/scanner.Scanner.End 怎么定位 token 末端:起止位置与诊断范围</a> </dt> <dd class="cont2"> <span><i class="view"></i>131浏览</span> <span class="collectBtn user_collection" data-id="623834" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623822.html" class="img_box" title="Go 1.27 unsafefuncs 怎么改旧代码:函数指针转换的审查边界"> <img src="/uploads/20260901/1788216511-go127-unsafefuncs-pointer-arithmetic.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 unsafefuncs 怎么改旧代码:函数指针转换的审查边界"> </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>   |  18小时前  |   <a href="/articletag/520_new_0_1.html" class="aLightGray" title="unsafe">unsafe</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/42538_new_0_1.html" class="aLightGray" title="Go升级">Go升级</a> · <a href="javascript:;" class="aLightGray" title="go fix">go fix</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="unsafefuncs">unsafefuncs</a> <a href="javascript:;" class="aLightGray" title="unsafe.Add">unsafe.Add</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623822.html" class="aBlack" target="_blank" title="Go 1.27 unsafefuncs 怎么改旧代码:函数指针转换的审查边界">Go 1.27 unsafefuncs 怎么改旧代码:函数指针转换的审查边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>368浏览</span> <span class="collectBtn user_collection" data-id="623822" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623816.html" class="img_box" title="Go 1.27 net/url.Clone 怎么做深拷贝:URL 与 Values 的独立修改边界"> <img src="/uploads/20260901/1788212200-go127-query-rawquery-writeback.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 net/url.Clone 怎么做深拷贝:URL 与 Values 的独立修改边界"> </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>   |  19小时前  |   <a href="/articletag/172_new_0_1.html" class="aLightGray" title="标准库">标准库</a> · <a href="/articletag/540_new_0_1.html" class="aLightGray" title="HTTP">HTTP</a> · <a href="/articletag/594_new_0_1.html" class="aLightGray" title="go">go</a> · <a href="/articletag/2657_new_0_1.html" class="aLightGray" title="url">url</a> · <a href="javascript:;" class="aLightGray" title="深拷贝">深拷贝</a> <a href="javascript:;" class="aLightGray" title="net/url">net/url</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="URL.Clone">URL.Clone</a> <a href="javascript:;" class="aLightGray" title="Values.Clone">Values.Clone</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623816.html" class="aBlack" target="_blank" title="Go 1.27 net/url.Clone 怎么做深拷贝:URL 与 Values 的独立修改边界">Go 1.27 net/url.Clone 怎么做深拷贝:URL 与 Values 的独立修改边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>490浏览</span> <span class="collectBtn user_collection" data-id="623816" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623808.html" class="img_box" title="Go 1.27 crypto/mldsa 如何生成 ML-DSA 密钥:FIPS 204 与签名接口边界"> <img src="/uploads/20260901/1788206322-go127-mldsa-key-structure.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 crypto/mldsa 如何生成 ML-DSA 密钥:FIPS 204 与签名接口边界"> </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>   |  21小时前  |   <a href="/articletag/172_new_0_1.html" class="aLightGray" title="标准库">标准库</a> · <a href="/articletag/594_new_0_1.html" class="aLightGray" title="go">go</a> · <a href="/articletag/6051_new_0_1.html" class="aLightGray" title="数字签名">数字签名</a> · <a href="/articletag/39702_new_0_1.html" class="aLightGray" title="密码学">密码学</a> · <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="crypto/mldsa">crypto/mldsa</a> <a href="javascript:;" class="aLightGray" title="ML-DSA">ML-DSA</a> <a href="javascript:;" class="aLightGray" title="FIPS 204">FIPS 204</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623808.html" class="aBlack" target="_blank" title="Go 1.27 crypto/mldsa 如何生成 ML-DSA 密钥:FIPS 204 与签名接口边界">Go 1.27 crypto/mldsa 如何生成 ML-DSA 密钥:FIPS 204 与签名接口边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>106浏览</span> <span class="collectBtn user_collection" data-id="623808" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623805.html" class="img_box" title="Go 1.27 崩溃堆栈为什么多了 goroutine 标签:tracebacklabels 的取舍"> <img src="/uploads/20260901/1788203446-go127-pprof-label-context.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 崩溃堆栈为什么多了 goroutine 标签:tracebacklabels 的取舍"> </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>   |  22小时前  |   <a href="/articletag/1922_new_0_1.html" class="aLightGray" title="go并发">go并发</a> · <a href="/articletag/2250_new_0_1.html" class="aLightGray" title="pprof">pprof</a> · <a href="/articletag/6837_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/39952_new_0_1.html" class="aLightGray" title="版本升级">版本升级</a> · <a href="javascript:;" class="aLightGray" title="GODEBUG">GODEBUG</a> <a href="javascript:;" class="aLightGray" title="runtime/pprof">runtime/pprof</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="goroutine 标签">goroutine 标签</a> <a href="javascript:;" class="aLightGray" title="tracebacklabels">tracebacklabels</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623805.html" class="aBlack" target="_blank" title="Go 1.27 崩溃堆栈为什么多了 goroutine 标签:tracebacklabels 的取舍">Go 1.27 崩溃堆栈为什么多了 goroutine 标签:tracebacklabels 的取舍</a> </dt> <dd class="cont2"> <span><i class="view"></i>174浏览</span> <span class="collectBtn user_collection" data-id="623805" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623802.html" class="img_box" title="Go 1.27 http.Response.Body 关闭会自动排空什么:连接复用与异常边界"> <img src="/uploads/20260901/1788201393-go127-body-ownership.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 http.Response.Body 关闭会自动排空什么:连接复用与异常边界"> </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>   |  22小时前  |   <a href="/articletag/17_new_0_1.html" class="aLightGray" title="网络编程">网络编程</a> · <a href="/articletag/540_new_0_1.html" class="aLightGray" title="HTTP">HTTP</a> · <a href="/articletag/594_new_0_1.html" class="aLightGray" title="go">go</a> · <a href="/articletag/861_new_0_1.html" class="aLightGray" title="性能">性能</a> · <a href="javascript:;" class="aLightGray" title="连接复用">连接复用</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="http.Response.Body">http.Response.Body</a> <a href="javascript:;" class="aLightGray" title="Response.Body.Close">Response.Body.Close</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623802.html" class="aBlack" target="_blank" title="Go 1.27 http.Response.Body 关闭会自动排空什么:连接复用与异常边界">Go 1.27 http.Response.Body 关闭会自动排空什么:连接复用与异常边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>311浏览</span> <span class="collectBtn user_collection" data-id="623802" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/623799.html" class="img_box" title="Go 1.27 httptest.NewTestServer 怎么接 synctest:内存测试网络的适用范围"> <img src="/uploads/20260901/1788199339-newtestserver-network.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.27 httptest.NewTestServer 怎么接 synctest:内存测试网络的适用范围"> </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>   |  23小时前  |   <a href="/articletag/172_new_0_1.html" class="aLightGray" title="标准库">标准库</a> · <a href="/articletag/594_new_0_1.html" class="aLightGray" title="go">go</a> · <a href="/articletag/40683_new_0_1.html" class="aLightGray" title="Go 1.27">Go 1.27</a> · <a href="/articletag/41093_new_0_1.html" class="aLightGray" title="并发测试">并发测试</a> · <a href="/articletag/42532_new_0_1.html" class="aLightGray" title="HTTP 测试">HTTP 测试</a> · <a href="javascript:;" class="aLightGray" title="testing/synctest">testing/synctest</a> <a href="javascript:;" class="aLightGray" title="Go 1.27">Go 1.27</a> <a href="javascript:;" class="aLightGray" title="httptest.NewTestServer">httptest.NewTestServer</a> <a href="javascript:;" class="aLightGray" title="Go 并发测试">Go 并发测试</a> <a href="javascript:;" class="aLightGray" title="内存网络">内存网络</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/623799.html" class="aBlack" target="_blank" title="Go 1.27 httptest.NewTestServer 怎么接 synctest:内存测试网络的适用范围">Go 1.27 httptest.NewTestServer 怎么接 synctest:内存测试网络的适用范围</a> </dt> <dd class="cont2"> <span><i class="view"></i>184浏览</span> <span class="collectBtn user_collection" data-id="623799" 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/13892.html" target="_blank" title="SuperCLUE中文大模型评测基准:功能、能力维度与应用指南" class="img_box"> <img src="/uploads/20260831/17881740316a955ecf5901d.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="SuperCLUE中文大模型评测基准:功能、能力维度与应用指南" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13892.html" class="aBlack" target="_blank" title="SuperCLUE">SuperCLUE</a></dt> <dd class="cont1 lineTwoOverflow"> SuperCLUE是权威的中文大语言模型综合评测基准,涵盖语言理解、知识应用、AI Agent智能体及安全性等12项核心能力。通过多轮对话与客观测试,定期发布榜单与技术报告,为模型研发、优化及行业选型提供科学依据。 </dd> <dd class="cont2">51次使用</dd> </dl> </li> <li> <a href="/ai/13870.html" target="_blank" title="Gradio是什么?Python开源库快速构建机器学习Web演示界面" class="img_box"> <img src="/uploads/20260901/17882172316a96078feae60.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Gradio是什么?Python开源库快速构建机器学习Web演示界面" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13870.html" class="aBlack" target="_blank" title="Gradio">Gradio</a></dt> <dd class="cont1 lineTwoOverflow"> Gradio是一个用于构建机器学习和数据科学Web应用的开源Python库。支持快速创建交互界面,获Google、Meta等大厂青睐,适合模型演示、部署反馈及调试。 </dd> <dd class="cont2">47次使用</dd> </dl> </li> <li> <a href="/ai/13865.html" target="_blank" title="AutoGPT是什么?开源AI Agent自动化工作流平台详解与使用教程" class="img_box"> <img src="/uploads/20260901/17882334316a9646d7b99bd.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="AutoGPT是什么?开源AI Agent自动化工作流平台详解与使用教程" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13865.html" class="aBlack" target="_blank" title="AutoGPT">AutoGPT</a></dt> <dd class="cont1 lineTwoOverflow"> AutoGPT是基于GPT-4的开源AI代理平台,拥有超10万GitHub星标。本文介绍其低代码界面、自动化工作流功能、系统配置要求及安装步骤,助您高效部署和管理AI Agent。 </dd> <dd class="cont2">48次使用</dd> </dl> </li> <li> <a href="/ai/13853.html" target="_blank" title="腾讯扣叮官网:青少年编程教育平台,提供图形化编程、3D创作与虚拟仿真实验室" class="img_box"> <img src="/uploads/20260831/17881758316a9565d78b6be.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="腾讯扣叮官网:青少年编程教育平台,提供图形化编程、3D创作与虚拟仿真实验室" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13853.html" class="aBlack" target="_blank" title="腾讯扣叮">腾讯扣叮</a></dt> <dd class="cont1 lineTwoOverflow"> 腾讯扣叮是腾讯推出的6-18岁青少年编程学习平台,依托游戏与AI技术,提供图形化编程、3D创作、虚拟实验室及丰富赛事课程,助力培养计算思维与创新能力。 </dd> <dd class="cont2">50次使用</dd> </dl> </li> <li> <a href="/ai/13843.html" target="_blank" title="堆友AI学习平台介绍:阿里认证课程与AIGC设计实战指南" class="img_box"> <img src="/uploads/20260901/17882010316a95c84718bca.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="堆友AI学习平台介绍:阿里认证课程与AIGC设计实战指南" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13843.html" class="aBlack" target="_blank" title="堆友AI学习">堆友AI学习</a></dt> <dd class="cont1 lineTwoOverflow"> 堆友AI学习是堆友推出的专业AI设计教育平台,提供从基础到进阶的线上课程及线下实训营。结合阿里国际AITIC认证,通过视频教程、笔记分享和实战案例,帮助设计师掌握AIGC技能,提升职业竞争力。 </dd> <dd class="cont2">50次使用</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/619847.html" class="aBlack" title="Java 性能优化上线清单:从定位、改造到灰度发布">Java 性能优化上线清单:从定位、改造到灰度发布</a></dt> <dd> <span class="left">2026-06-11</span> <span class="right">860浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/619846.html" class="aBlack" title="Spring Boot 压测验证:Gatling、JMeter 与性能回归门禁">Spring Boot 压测验证:Gatling、JMeter 与性能回归门禁</a></dt> <dd> <span class="left">2026-06-11</span> <span class="right">843浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/619845.html" class="aBlack" title="Java NMT 非堆内存排查:Direct Buffer、线程栈与 Metaspace 分析">Java NMT 非堆内存排查:Direct Buffer、线程栈与 Metaspace 分析</a></dt> <dd> <span class="left">2026-06-11</span> <span class="right">826浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/619844.html" class="aBlack" title="Spring Boot 容器内存优化:JVM 堆、非堆与 MaxRAMPercentage">Spring Boot 容器内存优化:JVM 堆、非堆与 MaxRAMPercentage</a></dt> <dd> <span class="left">2026-06-11</span> <span class="right">809浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/619843.html" class="aBlack" title="Tomcat 连接与线程参数调优:maxThreads、acceptCount 与 KeepAlive">Tomcat 连接与线程参数调优:maxThreads、acceptCount 与 KeepAlive</a></dt> <dd> <span class="left">2026-06-11</span> <span class="right">792浏览</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> <a href="/manual/go/" target="_blank" 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备19018815号-4</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="//www.17golang.com/article/308536.html"/> <input type="hidden" name="__token__" value="4033670420228ebaa2cfdf2510038945" /> <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="//www.17golang.com/article/308536.html"/> <input type="hidden" name="__token__" value="4033670420228ebaa2cfdf2510038945" /> <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 src="/assets/js/juejin-theme.js?v=20260613b" defer></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e34c3e8ab31ba35d7e1c48ea8d77315f"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/frontend/common.js"></script> </body> </html>