当前位置:首页 > 文章列表 > Golang > Go教程 > Golang实现SEO动态渲染,Headless Chrome爬虫适配指南

Golang实现SEO动态渲染,Headless Chrome爬虫适配指南

2026-04-01 13:48:49 0浏览 收藏
本文深入探讨了在Go语言中使用chromedp实现SEO动态渲染的关键挑战与实战方案,重点解决单页应用(SPA)因JavaScript异步注入导致meta标签、title等SEO内容无法准确抓取的痛点;文章系统梳理了如何精准判断JS渲染完成时机(如结合document.readyState、框架特定就绪信号及合理延时)、安全修改SEO元信息(优先操作document.title而非DOM节点、规避hydration冲突)、正确配置headless Chrome参数(UA伪装、JS启用、反检测策略),并对比指出Go生态缺乏像Node.js中puppeteer-stealth或next-seo那样的开箱即用适配能力,必须针对Vue、React、Next.js、Nuxt、Gatsby等主流框架逐一定制等待逻辑——真正难点不在技术可行性,而在于没有统一标准,每个框架都需“手写适配”,稍有疏漏即引发SEO字段缺失或错乱。

如何在Golang中实现SEO友好的动态渲染 Go语言Headless Chrome爬虫适配

Go 里用 chromedp 渲染页面时,head 标签内容拿不到?

默认情况下 chromedp.Navigate 后直接 chromedp.OuterHTML,经常返回空或不完整 —— 因为 DOM 加载和 JS 执行是异步的, 里的 </code> 很可能还没被框架(比如 Vue/Next/Nuxt)注入。</p><p>实操建议:</p><ul><li>必须等 JS 渲染完成再取 <code><head></code>,用 <code>chromedp.WaitVisible(`head`, chromedp.ByQuery)</code> 不可靠,改用 <code>chromedp.Evaluate(`document.readyState == 'complete'`, &ready)</code> + <code>time.Sleep(100 * time.Millisecond)</code> 补偿动态框架的延迟</li><li>优先用 <code>chromedp.InnerHTML(`head`, &headHTML, chromedp.NodeVisible)</code> 而非 <code>OuterHTML</code>,避免把 <code><html><head>...</head></html></code> 整体拉下来再解析</li><li>如果目标站用 React Hydration,需加 <code>chromedp.Sleep(500 * time.Millisecond)</code>,否则 <code>document.title</code> 还是初始值</li></ul><h3>Go 爬虫里怎么安全注入 SEO 元信息到渲染后 HTML?</h3><p>不是所有页面都允许你改 <code><head></code>;有些 SPA 在客户端才拼 <code><title></code>,服务端直出的 <code><head></code> 是占位符。硬塞 <code>innerHTML</code> 会破坏 hydration,导致 CSR 失败或双端不一致。</p><p>实操建议:</p><ul><li>只在确认是纯 SSR 或静态生成的页面时,用 <code>chromedp.Evaluate(`document.querySelector('title').textContent = '${title}'`, nil)</code> 动态覆盖 —— 注意单引号转义</li><li>对 Next.js / Nuxt 站,改 <code>document.title</code> 比改 DOM 更安全,后续路由跳转仍能响应:用 <code>chromedp.Evaluate(`document.title = '${title}'`, nil)</code></li><li>不要用 <code>chromedp.SetAttributeValue</code> 改 <code><meta></code> 的 <code>content</code>,某些框架会监听 <code>mutationObserver</code> 并回滚,应改完立刻 <code>chromedp.CaptureScreenshot()</code> 或取 <code>innerHTML</code> 存档</li></ul><h3>chromedp 启动 Chrome 时哪些参数影响 SEO 渲染结果?</h3><p>默认启动的 headless Chrome 缺少真实 UA、禁用 JS、不加载字体,导致某些站点降级为「no-JS fallback」模板,<code><meta name="robots"></code> 都不输出。</p><p>实操建议:</p><ul><li>必须加 <code>--user-agent</code>:用 <code>chromedp.ExecAllocator(..., chromedp.Flag("user-agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36"))</code></li><li>禁用 <code>--disable-javascript</code>(默认不开,但检查配置是否误加),否则 <code>ReactHelmet</code> / <code>VueMeta</code> 完全不执行</li><li>加 <code>--disable-gpu --no-sandbox --disable-dev-shm-usage</code> 是必须的,但 <code>--single-process</code> 会导致部分站点 JS 执行异常,别加</li><li>如果目标站检测 headless,可加 <code>--disable-blink-features=AutomationControlled</code> + <code>chromedp.Evaluate(`Object.defineProperty(navigator, 'webdriver', {get: () => undefined})`, nil)</code></li></ul><h3>为什么用 Go 做动态渲染比 Node.js 更难拿到准确的 SEO 字段?</h3><p>Node.js 生态有 <code>puppeteer-extra-plugin-stealth</code> 和现成的 <code>next-seo</code> 解析器,而 Go 的 chromedp 没有封装好的「等待 Helmet 注入完成」钩子,所有时机都要自己判。</p><p>实操建议:</p><ul><li>别依赖 <code>document.title</code> 立即可用,Vue Meta 默认用 <code>deferred</code> 模式,得等 <code>chromedp.Evaluate(`typeof __VUE_META__ !== 'undefined' && __VUE_META__.length > 0`, &hasMeta)</code></li><li>Next.js 页面要等 <code>window.next.router.isReady</code>,用 <code>chromedp.Evaluate(`window.next && window.next.router && window.next.router.isReady`, &isReady)</code> 判定</li><li>对 Gatsby 站,检查 <code>window.___gatsby</code> 是否存在比等 <code>DOMContentLoaded</code> 更准</li></ul><p>真正卡住的从来不是能不能跑通,而是判断「JS 渲染到底完了没有」—— 没有统一信号,每个框架得单独适配,漏掉一个就 SEO 字段错乱。</p><p>今天关于《Golang实现SEO动态渲染,Headless Chrome爬虫适配指南》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注golang学习网公众号!</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/552579.html" title="Minimax动态壁纸生成方法详解" class="img_box"> <img src="/uploads/20260401/177502247169ccb187e3ca6.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Minimax动态壁纸生成方法详解">Minimax动态壁纸生成方法详解 </a> <dl> <dt class="lineOverflow"><a href="/article/552579.html" title="Minimax动态壁纸生成方法详解" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">Minimax动态壁纸生成方法详解</dd> </dl> </div> <div class="cateItem"> <a href="/article/552581.html" title="如何创建HTML文件及新建方法详解" class="img_box"> <img src="/uploads/20260401/177502253869ccb1ca4146a.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="如何创建HTML文件及新建方法详解"> </a> <dl> <dt class="lineOverflow"><a href="/article/552581.html" class="aBlack" title="如何创建HTML文件及新建方法详解">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">如何创建HTML文件及新建方法详解</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/619975.html" class="img_box" title="Go HTTP 请求一直卡住怎么办:从默认客户端到超时控制一步步排查"> <img src="/uploads/20260616/1781575338-go-http-timeout-fix.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go HTTP 请求一直卡住怎么办:从默认客户端到超时控制一步步排查"> </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>   |  55分钟前  |   <a href="/articletag/778_new_0_1.html" class="aLightGray" title="Context">Context</a> · <a href="/articletag/898_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/39743_new_0_1.html" class="aLightGray" title="HTTP客户端">HTTP客户端</a> · <a href="/articletag/39867_new_0_1.html" class="aLightGray" title="问题排查">问题排查</a> · <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="context">context</a> <a href="javascript:;" class="aLightGray" title="HTTP超时">HTTP超时</a> <a href="javascript:;" class="aLightGray" title="客户端超时">客户端超时</a> <a href="javascript:;" class="aLightGray" title="请求排查">请求排查</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619975.html" class="aBlack" target="_blank" title="Go HTTP 请求一直卡住怎么办:从默认客户端到超时控制一步步排查">Go HTTP 请求一直卡住怎么办:从默认客户端到超时控制一步步排查</a> </dt> <dd class="cont2"> <span><i class="view"></i>115浏览</span> <span class="collectBtn user_collection" data-id="619975" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619974.html" class="img_box" title="Go errgroup 并发任务完整流程:错误取消、SetLimit 限流和结果收集"> <img src="/uploads/20260616/1781574648-go-errgroup-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go errgroup 并发任务完整流程:错误取消、SetLimit 限流和结果收集"> </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/400_new_0_1.html" class="aLightGray" title="errgroup">errgroup</a> · <a href="/articletag/594_new_0_1.html" class="aLightGray" title="go">go</a> · <a href="/articletag/778_new_0_1.html" class="aLightGray" title="Context">Context</a> · <a href="/articletag/1138_new_0_1.html" class="aLightGray" title="并发编程">并发编程</a> · <a href="/articletag/39901_new_0_1.html" class="aLightGray" title="SetLimit">SetLimit</a> · <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="并发任务">并发任务</a> <a href="javascript:;" class="aLightGray" title="errgroup">errgroup</a> <a href="javascript:;" class="aLightGray" title="SetLimit">SetLimit</a> <a href="javascript:;" class="aLightGray" title="context取消">context取消</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619974.html" class="aBlack" target="_blank" title="Go errgroup 并发任务完整流程:错误取消、SetLimit 限流和结果收集">Go errgroup 并发任务完整流程:错误取消、SetLimit 限流和结果收集</a> </dt> <dd class="cont2"> <span><i class="view"></i>301浏览</span> <span class="collectBtn user_collection" data-id="619974" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619966.html" class="img_box" title="Go map 并发读写崩溃怎么办:从复现报错到 RWMutex 修复的完整流程"> <img src="/uploads/20260615/1781510677-go-map-choice-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go map 并发读写崩溃怎么办:从复现报错到 RWMutex 修复的完整流程"> </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/56_new_0_1.html" class="aLightGray" title="map">map</a> · <a href="/articletag/181_new_0_1.html" class="aLightGray" title="并发安全">并发安全</a> · <a href="/articletag/198_new_0_1.html" class="aLightGray" title="RWMutex">RWMutex</a> · <a href="/articletag/1550_new_0_1.html" class="aLightGray" title="sync.Map">sync.Map</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="javascript:;" class="aLightGray" title="并发安全">并发安全</a> <a href="javascript:;" class="aLightGray" title="RWMutex">RWMutex</a> <a href="javascript:;" class="aLightGray" title="sync.Map">sync.Map</a> <a href="javascript:;" class="aLightGray" title="Go map并发读写">Go map并发读写</a> <a href="javascript:;" class="aLightGray" title="go test race">go test race</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619966.html" class="aBlack" target="_blank" title="Go map 并发读写崩溃怎么办:从复现报错到 RWMutex 修复的完整流程">Go map 并发读写崩溃怎么办:从复现报错到 RWMutex 修复的完整流程</a> </dt> <dd class="cont2"> <span><i class="view"></i>272浏览</span> <span class="collectBtn user_collection" data-id="619966" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619933.html" class="img_box" title="Go singleflight 防缓存击穿实战:相同请求只查一次数据库"> <img src="/uploads/20260613/1781345049-go-singleflight-cache-miss.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go singleflight 防缓存击穿实战:相同请求只查一次数据库"> </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/570_new_0_1.html" class="aLightGray" title="singleflight">singleflight</a> · <a href="/articletag/1650_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/39749_new_0_1.html" class="aLightGray" title="缓存治理">缓存治理</a> · <a href="/articletag/39841_new_0_1.html" class="aLightGray" title="接口优化">接口优化</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="singleflight">singleflight</a> <a href="javascript:;" class="aLightGray" title="缓存回填">缓存回填</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619933.html" class="aBlack" target="_blank" title="Go singleflight 防缓存击穿实战:相同请求只查一次数据库">Go singleflight 防缓存击穿实战:相同请求只查一次数据库</a> </dt> <dd class="cont2"> <span><i class="view"></i>114浏览</span> <span class="collectBtn user_collection" data-id="619933" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619919.html" class="img_box" title="Go 配置热更新实战:监听文件变化并安全替换运行时配置"> <img src="/uploads/20260613/1781321845-config-reload-flow-labeled.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 配置热更新实战:监听文件变化并安全替换运行时配置"> </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/238_new_0_1.html" class="aLightGray" title="golang">golang</a> · <a href="/articletag/377_new_0_1.html" class="aLightGray" title="配置管理">配置管理</a> · <a href="/articletag/2211_new_0_1.html" class="aLightGray" title="热更新">热更新</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="配置热更新">配置热更新</a> <a href="javascript:;" class="aLightGray" title="fsnotify">fsnotify</a> <a href="javascript:;" class="aLightGray" title="atomic.Value">atomic.Value</a> <a href="javascript:;" class="aLightGray" title="运行时配置">运行时配置</a> <a href="javascript:;" class="aLightGray" title="服务稳定性">服务稳定性</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619919.html" class="aBlack" target="_blank" title="Go 配置热更新实战:监听文件变化并安全替换运行时配置">Go 配置热更新实战:监听文件变化并安全替换运行时配置</a> </dt> <dd class="cont2"> <span><i class="view"></i>458浏览</span> <span class="collectBtn user_collection" data-id="619919" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619908.html" class="img_box" title="Go 泛型切片去重实战:comparable 约束和保序去重怎么写"> <img src="/uploads/20260613/1781310593-go-slice-dedup-by-field.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 泛型切片去重实战:comparable 约束和保序去重怎么写"> </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/104_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/598_new_0_1.html" class="aLightGray" title="泛型">泛型</a> · <a href="/articletag/39745_new_0_1.html" class="aLightGray" title="后端开发">后端开发</a> · <a href="/articletag/39809_new_0_1.html" class="aLightGray" title="工具函数">工具函数</a> · <a href="javascript:;" class="aLightGray" title="Go泛型">Go泛型</a> <a href="javascript:;" class="aLightGray" title="Comparable">Comparable</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="UniqueBy">UniqueBy</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619908.html" class="aBlack" target="_blank" title="Go 泛型切片去重实战:comparable 约束和保序去重怎么写">Go 泛型切片去重实战:comparable 约束和保序去重怎么写</a> </dt> <dd class="cont2"> <span><i class="view"></i>501浏览</span> <span class="collectBtn user_collection" data-id="619908" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619899.html" class="img_box" title="Go 错误链处理实战:用 errors.Is 和 errors.As 保留根因"> <img src="/uploads/20260613/1781302651-go-error-chain-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 错误链处理实战:用 errors.Is 和 errors.As 保留根因"> </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/238_new_0_1.html" class="aLightGray" title="golang">golang</a> · <a href="/articletag/503_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/39745_new_0_1.html" class="aLightGray" title="后端开发">后端开发</a> · <a href="/articletag/39803_new_0_1.html" class="aLightGray" title="实战教程">实战教程</a> · <a href="javascript:;" class="aLightGray" title="错误处理">错误处理</a> <a href="javascript:;" class="aLightGray" title="错误链">错误链</a> <a href="javascript:;" class="aLightGray" title="errors.Is">errors.Is</a> <a href="javascript:;" class="aLightGray" title="errors.As">errors.As</a> <a href="javascript:;" class="aLightGray" title="业务错误码">业务错误码</a> <a href="javascript:;" class="aLightGray" title="Go教程">Go教程</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619899.html" class="aBlack" target="_blank" title="Go 错误链处理实战:用 errors.Is 和 errors.As 保留根因">Go 错误链处理实战:用 errors.Is 和 errors.As 保留根因</a> </dt> <dd class="cont2"> <span><i class="view"></i>413浏览</span> <span class="collectBtn user_collection" data-id="619899" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619891.html" class="img_box" title="Go 令牌桶限流实战:用 time.Ticker 保护高频接口"> <img src="/uploads/20260613/1781295352-go-token-bucket-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 令牌桶限流实战:用 time.Ticker 保护高频接口"> </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/346_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/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39701_new_0_1.html" class="aLightGray" title="工程实践">工程实践</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="HTTP中间件">HTTP中间件</a> <a href="javascript:;" class="aLightGray" title="time.Ticker">time.Ticker</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619891.html" class="aBlack" target="_blank" title="Go 令牌桶限流实战:用 time.Ticker 保护高频接口">Go 令牌桶限流实战:用 time.Ticker 保护高频接口</a> </dt> <dd class="cont2"> <span><i class="view"></i>484浏览</span> <span class="collectBtn user_collection" data-id="619891" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619887.html" class="img_box" title="Go HTTP 服务优雅停机实战:信号处理、摘流和超时关闭"> <img src="/uploads/20260613/1781291976-go-http-drain.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go HTTP 服务优雅停机实战:信号处理、摘流和超时关闭"> </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/540_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/39733_new_0_1.html" class="aLightGray" title="服务治理">服务治理</a> · <a href="/articletag/39794_new_0_1.html" class="aLightGray" title="优雅停机">优雅停机</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="HTTP服务">HTTP服务</a> <a href="javascript:;" class="aLightGray" title="优雅停机">优雅停机</a> <a href="javascript:;" class="aLightGray" title="signal">signal</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619887.html" class="aBlack" target="_blank" title="Go HTTP 服务优雅停机实战:信号处理、摘流和超时关闭">Go HTTP 服务优雅停机实战:信号处理、摘流和超时关闭</a> </dt> <dd class="cont2"> <span><i class="view"></i>340浏览</span> <span class="collectBtn user_collection" data-id="619887" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619884.html" class="img_box" title="Go JSON 配置解析实战:结构体标签、默认值和未知字段检查"> <img src="/uploads/20260613/1781289260-go-json-map-problem.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go JSON 配置解析实战:结构体标签、默认值和未知字段检查"> </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/238_new_0_1.html" class="aLightGray" title="golang">golang</a> · <a href="/articletag/307_new_0_1.html" class="aLightGray" title="JSON">JSON</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39790_new_0_1.html" class="aLightGray" title="配置解析">配置解析</a> · <a href="javascript:;" class="aLightGray" title="JSON">JSON</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="配置解析">配置解析</a> <a href="javascript:;" class="aLightGray" title="DisallowUnknownFields">DisallowUnknownFields</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619884.html" class="aBlack" target="_blank" title="Go JSON 配置解析实战:结构体标签、默认值和未知字段检查">Go JSON 配置解析实战:结构体标签、默认值和未知字段检查</a> </dt> <dd class="cont2"> <span><i class="view"></i>301浏览</span> <span class="collectBtn user_collection" data-id="619884" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619880.html" class="img_box" title="Go worker pool 实战:用 channel 控制并发和收集结果"> <img src="/uploads/20260613/1781284686-go-worker-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go worker pool 实战:用 channel 控制并发和收集结果"> </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/136_new_0_1.html" class="aLightGray" title="channel">channel</a> · <a href="/articletag/238_new_0_1.html" class="aLightGray" title="golang">golang</a> · <a href="/articletag/1138_new_0_1.html" class="aLightGray" title="并发编程">并发编程</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="Goroutine">Goroutine</a> <a href="javascript:;" class="aLightGray" title="channel">channel</a> <a href="javascript:;" class="aLightGray" title="并发控制">并发控制</a> <a href="javascript:;" class="aLightGray" title="worker pool">worker pool</a> <a href="javascript:;" class="aLightGray" title="结果收集">结果收集</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619880.html" class="aBlack" target="_blank" title="Go worker pool 实战:用 channel 控制并发和收集结果">Go worker pool 实战:用 channel 控制并发和收集结果</a> </dt> <dd class="cont2"> <span><i class="view"></i>459浏览</span> <span class="collectBtn user_collection" data-id="619880" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619874.html" class="img_box" title="Go context 超时控制实战:让 HTTP 调用按时取消"> <img src="/uploads/20260612/1781274231-go-context-cancel-chain.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go context 超时控制实战:让 HTTP 调用按时取消"> </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/540_new_0_1.html" class="aLightGray" title="HTTP">HTTP</a> · <a href="/articletag/778_new_0_1.html" class="aLightGray" title="Context">Context</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/39776_new_0_1.html" class="aLightGray" title="超时治理">超时治理</a> · <a href="javascript:;" class="aLightGray" title="HTTP">HTTP</a> <a href="javascript:;" class="aLightGray" title="Go">Go</a> <a href="javascript:;" class="aLightGray" title="context">context</a> <a href="javascript:;" class="aLightGray" title="超时控制">超时控制</a> <a href="javascript:;" class="aLightGray" title="后端接口">后端接口</a> <a href="javascript:;" class="aLightGray" title="取消请求">取消请求</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619874.html" class="aBlack" target="_blank" title="Go context 超时控制实战:让 HTTP 调用按时取消">Go context 超时控制实战:让 HTTP 调用按时取消</a> </dt> <dd class="cont2"> <span><i class="view"></i>346浏览</span> <span class="collectBtn user_collection" data-id="619874" 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/13106.html" target="_blank" title="剧云 - 免费 AI 智能中文剧本创作平台" class="img_box"> <img src="/uploads/ai/20260615/d36c7176-icon-2b0cd581ce.png" 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/13106.html" class="aBlack" target="_blank" title="剧云">剧云</a></dt> <dd class="cont1 lineTwoOverflow"> 剧云是专业中文剧本创作平台,安全稳定运行十余年,集成AI编剧、剧本医生审核、人物小传、剧情关系图、大纲编写、多人协作、Word导入导出、版权管控功能,数据安全防护,轻松高效创作剧本。 </dd> <dd class="cont2">152次使用</dd> </dl> </li> <li> <a href="/ai/13105.html" target="_blank" title="万象有声 - AI 一站式有声内容创作平台" class="img_box"> <img src="/uploads/ai/20260615/50267bac-icon-c146b001b5.png" 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/13105.html" class="aBlack" target="_blank" title="万象有声">万象有声</a></dt> <dd class="cont1 lineTwoOverflow"> 万象有声,一个专为有声创作者打造的新一代智能有声内容创作平台。平台提供专业的智能拆章、智能画本编辑、AI配音、AI生成音效、后期制作、智能对轨、智能审听等有声创作全流程工具,可以帮助创作者高效、低成本创作出引人入胜的有声作品。立即体验,让有声书制作更简单! </dd> <dd class="cont2">154次使用</dd> </dl> </li> <li> <a href="/ai/13104.html" target="_blank" title="Red Skill - 小红书推出的 AI Skill 分发平台" class="img_box"> <img src="/uploads/ai/20260615/red-skill-icon-8f32f63e1a.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Red Skill - 小红书推出的 AI Skill 分发平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13104.html" class="aBlack" target="_blank" title="Red Skill">Red Skill</a></dt> <dd class="cont1 lineTwoOverflow"> 小红书创作服务平台为小红书创作者和机构提供视频上传、数据分析、粉丝管理、创作指导等多项运营服务,助力用户解锁更多创作者专属功能,体验高效创作! </dd> <dd class="cont2">159次使用</dd> </dl> </li> <li> <a href="/ai/13103.html" target="_blank" title="MiMo Code - 小米大模型团队开源的新一代 AI 编程助手" class="img_box"> <img src="/uploads/ai/20260615/mimo-code-icon-df61883944.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="MiMo Code - 小米大模型团队开源的新一代 AI 编程助手" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13103.html" class="aBlack" target="_blank" title="MiMo Code">MiMo Code</a></dt> <dd class="cont1 lineTwoOverflow"> MiMo Code 是小米大模型团队开源的新一代 AI 编程助手,面向开发者提供代码理解、生成与辅助开发能力,适合作为 AI 编程工具收藏和体验。 </dd> <dd class="cont2">260次使用</dd> </dl> </li> <li> <a href="/ai/13102.html" target="_blank" title="TRAE Work - 字节跳动推出的 AI 原生工作台" class="img_box"> <img src="/uploads/ai/20260615/trae-work-icon-14916d46a4.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="TRAE Work - 字节跳动推出的 AI 原生工作台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13102.html" class="aBlack" target="_blank" title="TRAE Work">TRAE Work</a></dt> <dd class="cont1 lineTwoOverflow"> TRAE AI IDE | 国内首款 AI 原生集成开发环境,深度集成 Doubao-1.5-pro 与 DeepSeek 模型,支持中文自然语言一键生成完整代码框架,实时预览前端效果并智能修复 BUG。首创 Builder 模式实现需求到代码的自动化开发,兼容 Windows/macOS 系统,官网下载即用。 </dd> <dd class="cont2">290次使用</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备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/552580.html"/> <input type="hidden" name="__token__" value="ff35673c2351a40144fa2bc80e8f7ffd" /> <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/552580.html"/> <input type="hidden" name="__token__" value="ff35673c2351a40144fa2bc80e8f7ffd" /> <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?3dc5666f6478c7bf39cd5c91e597423d"; hm.async = true; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/frontend/common.js"></script> </body> </html>