当前位置:首页 > 文章列表 > Golang > Go教程 > Golang用colly做简单爬虫教程

Golang用colly做简单爬虫教程

2025-06-30 14:42:15 0浏览 收藏

你在学习Golang相关的知识吗?本文《Golang用colly实现简单爬虫教程》,主要介绍的内容就涉及到,如果你想提升自己的开发能力,就不要错过这篇文章,大家要知道编程理论基础和实战操作都是不可或缺的哦!

实现一个简单的爬虫程序在Golang中使用colly框架非常高效。1. 安装colly:执行go get github.com/gocolly/colly/v2完成安装;2. 创建采集器:使用colly.NewCollector()创建采集器并用OnHTML监听HTML元素提取内容,如抓取网页标题;3. 抓取多个链接:通过OnHTML捕获a标签并递归访问子链接,可设置MaxDepth限制爬取深度;4. 设置请求头与延迟:用OnRequest设置User-Agent模拟浏览器行为,并通过Limit控制并发和请求间隔降低被封风险;5. 保存数据:将结果保存为JSON格式或存入数据库,满足后续分析需求。这些步骤展示了colly的基本用法,适合快速开发小型爬虫项目。

怎样用Golang实现一个简单的爬虫程序 使用colly框架实战

实现一个简单的爬虫程序其实并不难,尤其是在 Golang 中使用 colly 这个框架,可以非常高效地完成网页抓取任务。Colly 是 Go 语言中最流行的爬虫库之一,简单易用、性能高,适合新手入门和快速开发。

怎样用Golang实现一个简单的爬虫程序 使用colly框架实战

安装 Colly

在开始写代码之前,首先需要安装 colly:

怎样用Golang实现一个简单的爬虫程序 使用colly框架实战
go get github.com/gocolly/colly/v2

这一步完成后,就可以在项目中导入并使用了。记得保持你的 Go 环境配置正确,否则可能会遇到依赖问题。


创建第一个爬虫:抓取网页标题

我们先从最基础的示例入手:抓取某个网页的 </code> 标签内容。</p><img src="/uploads/20250630/17512656936862319d21e4a.jpg" alt="怎样用Golang实现一个简单的爬虫程序 使用colly框架实战"><pre class="brush:language-go;toolbar:false;">package main import ( "fmt" "github.com/gocolly/colly/v2" ) func main() { // 创建一个新的 collector c := colly.NewCollector() // 在访问每个页面时触发 c.OnHTML("title", func(e *colly.HTMLElement) { fmt.Println("页面标题是:", e.Text) }) // 开始访问目标网址 c.Visit("https://example.com") }</pre><p>这段代码的作用就是访问 <code>example.com</code> 并提取其中的标题。关键点在于:</p><ul><li>使用 <code>colly.NewCollector()</code> 创建采集器。</li><li>使用 <code>OnHTML</code> 监听 HTML 元素,传入选择器(如 CSS 选择器)。</li><li>使用 <code>Visit</code> 发起请求。</li></ul><p>你可以把 <code>https://example.com</code> 替换成任何你想爬取的网站试试看。</p><hr><h3>抓取多个链接:遍历页面中的所有超链接</h3><p>很多时候我们不仅想抓取一个页面的内容,还想顺着链接继续爬下去。这时候可以用 <code>OnHTML</code> 来捕获 <code><a></code> 标签,并递归访问它们。</p><pre class="brush:language-go;toolbar:false;">c.OnHTML("a[href]", func(e *colly.HTMLElement) { link := e.Attr("href") // 访问子链接 c.Visit(link) })</pre><p>但要注意,这样会无限递归下去。通常我们会限制采集深度:</p><pre class="brush:language-go;toolbar:false;">c := colly.NewCollector( colly.MaxDepth(2), // 只爬两层页面 )</pre><p>这样就能避免爬到太多无关页面,控制资源消耗。</p><hr><h3>设置请求头与延迟:模拟浏览器行为</h3><p>有些网站会对爬虫做限制,我们可以稍微“伪装”一下请求头,让服务器认为你是浏览器访问:</p><pre class="brush:language-go;toolbar:false;">c.OnRequest(func(r *colly.Request) { r.Headers.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0 Safari/537.36") })</pre><p>另外,为了避免对服务器造成压力,也可以设置访问间隔:</p><pre class="brush:language-go;toolbar:false;">c.Limit(&colly.LimitRule{ DomainGlob: "*", Parallelism: 2, Delay: 1 * time.Second, })</pre><p>这样每秒最多请求一次,同时并发不超过两个请求,可以有效降低被封 IP 的风险。</p><hr><h3>小技巧:保存数据到文件或数据库</h3><p>爬下来的数据当然要保存起来。常见的做法是保存为 JSON 或 CSV 文件。</p><p>例如保存成 JSON:</p><pre class="brush:language-go;toolbar:false;">type Result struct { Title string `json:"title"` URL string `json:"url"` } var results []Result c.OnHTML("title", func(e *colly.HTMLElement) { results = append(results, Result{ Title: e.Text, URL: e.Request.URL.String(), }) }) // 最后用 json.MarshalIndent 写入文件即可</pre><p>如果你打算做更复杂的分析,还可以考虑将数据存入 SQLite、MySQL 或 MongoDB。</p><hr><p>基本上就这些了。Colly 功能很强大,上面只是展示了最基本的一些用法。实际使用中还可以结合代理、分布式架构等来提升效率。不过对于大多数小规模爬虫需求来说,这些已经够用了。</p><p>以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。</p> </div> <div class="labsList"> <a href="/special/3_new_0_1.html" target="_blank" title="golang">golang</a> <a href="javascript:;" title="爬虫">爬虫</a> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/246015.html" title="PHP实现PostgreSQL触发器设置教程" class="img_box"> <img src="/uploads/20250630/1751265718686231b68dbf5.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="PHP实现PostgreSQL触发器设置教程">PHP实现PostgreSQL触发器设置教程 </a> <dl> <dt class="lineOverflow"><a href="/article/246015.html" title="PHP实现PostgreSQL触发器设置教程" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">PHP实现PostgreSQL触发器设置教程</dd> </dl> </div> <div class="cateItem"> <a href="/article/246017.html" title="Excel+Python预测分析教程详解" class="img_box"> <img src="/uploads/20250630/1751265767686231e7a4efd.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Excel+Python预测分析教程详解"> </a> <dl> <dt class="lineOverflow"><a href="/article/246017.html" class="aBlack" title="Excel+Python预测分析教程详解">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">Excel+Python预测分析教程详解</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/620530.html" class="img_box" title="Go io/fs.ValidPath 为什么拒绝 ./config.yaml:FS 路径规则与迁移边界"> <img src="/uploads/20260724/1784880038-fs-migration-boundary.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go io/fs.ValidPath 为什么拒绝 ./config.yaml:FS 路径规则与迁移边界"> </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/594_new_0_1.html" class="aLightGray" title="go">go</a> · <a href="/articletag/39701_new_0_1.html" class="aLightGray" title="工程实践">工程实践</a> · <a href="/articletag/40081_new_0_1.html" class="aLightGray" title="路径校验">路径校验</a> · <a href="/articletag/40465_new_0_1.html" class="aLightGray" title="文件系统">文件系统</a> · <a href="/articletag/40468_new_0_1.html" class="aLightGray" title="io/fs">io/fs</a> · <a href="javascript:;" class="aLightGray" title="Go io/fs.ValidPath">Go io/fs.ValidPath</a> <a href="javascript:;" class="aLightGray" title="fs.FS">fs.FS</a> <a href="javascript:;" class="aLightGray" title="os.DirFS">os.DirFS</a> <a href="javascript:;" class="aLightGray" title="文件路径校验">文件路径校验</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620530.html" class="aBlack" target="_blank" title="Go io/fs.ValidPath 为什么拒绝 ./config.yaml:FS 路径规则与迁移边界">Go io/fs.ValidPath 为什么拒绝 ./config.yaml:FS 路径规则与迁移边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>388浏览</span> <span class="collectBtn user_collection" data-id="620530" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620529.html" class="img_box" title="Go netip 怎么做 CIDR 白名单:解析、匹配与失败回归"> <img src="/uploads/20260724/1784878974-go-netip-allowlist-boundary.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go netip 怎么做 CIDR 白名单:解析、匹配与失败回归"> </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>   |  10小时前  |   <a href="/articletag/17_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/39701_new_0_1.html" class="aLightGray" title="工程实践">工程实践</a> · <a href="/articletag/40466_new_0_1.html" class="aLightGray" title="netip">netip</a> · <a href="/articletag/40467_new_0_1.html" class="aLightGray" title="输入校验">输入校验</a> · <a href="javascript:;" class="aLightGray" title="Go netip">Go netip</a> <a href="javascript:;" class="aLightGray" title="CIDR白名单">CIDR白名单</a> <a href="javascript:;" class="aLightGray" title="netip.ParsePrefix">netip.ParsePrefix</a> <a href="javascript:;" class="aLightGray" title="IP网段匹配">IP网段匹配</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620529.html" class="aBlack" target="_blank" title="Go netip 怎么做 CIDR 白名单:解析、匹配与失败回归">Go netip 怎么做 CIDR 白名单:解析、匹配与失败回归</a> </dt> <dd class="cont2"> <span><i class="view"></i>167浏览</span> <span class="collectBtn user_collection" data-id="620529" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620527.html" class="img_box" title="Go 用 io/fs 做配置目录快照:过滤、排序与差异报告小工具"> <img src="/uploads/20260724/1784877762-go-fs-snapshot-diff.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 用 io/fs 做配置目录快照:过滤、排序与差异报告小工具"> </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>   |  10小时前  |   <a href="/articletag/506_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/40465_new_0_1.html" class="aLightGray" title="文件系统">文件系统</a> · <a href="javascript:;" class="aLightGray" title="Go io/fs">Go io/fs</a> <a href="javascript:;" class="aLightGray" title="Go目录遍历">Go目录遍历</a> <a href="javascript:;" class="aLightGray" title="配置目录快照">配置目录快照</a> <a href="javascript:;" class="aLightGray" title="WalkDir">WalkDir</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620527.html" class="aBlack" target="_blank" title="Go 用 io/fs 做配置目录快照:过滤、排序与差异报告小工具">Go 用 io/fs 做配置目录快照:过滤、排序与差异报告小工具</a> </dt> <dd class="cont2"> <span><i class="view"></i>339浏览</span> <span class="collectBtn user_collection" data-id="620527" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620522.html" class="img_box" title="Go clear 怎么用:map 和 slice 清空后的容量、引用与复用边界"> <img src="/uploads/20260724/1784874951-go-clear-map-lifecycle.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go clear 怎么用:map 和 slice 清空后的容量、引用与复用边界"> </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>   |  11小时前  |   <a href="/articletag/56_new_0_1.html" class="aLightGray" title="map">map</a> · <a href="/articletag/578_new_0_1.html" class="aLightGray" title="Slice">Slice</a> · <a href="/articletag/39686_new_0_1.html" class="aLightGray" title="Go教程">Go教程</a> · <a href="/articletag/40459_new_0_1.html" class="aLightGray" title="内存复用">内存复用</a> · <a href="/articletag/40460_new_0_1.html" class="aLightGray" title="Go内置函数">Go内置函数</a> · <a href="javascript:;" class="aLightGray" title="Go clear">Go clear</a> <a href="javascript:;" class="aLightGray" title="map 清空">map 清空</a> <a href="javascript:;" class="aLightGray" title="slice 清空">slice 清空</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/620522.html" class="aBlack" target="_blank" title="Go clear 怎么用:map 和 slice 清空后的容量、引用与复用边界">Go clear 怎么用:map 和 slice 清空后的容量、引用与复用边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>384浏览</span> <span class="collectBtn user_collection" data-id="620522" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620510.html" class="img_box" title="Go 1.26 的 go fix 怎么安全改造旧项目:从扫描到回归验证"> <img src="/uploads/20260724/1784866771-go-fix-scan.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go 1.26 的 go fix 怎么安全改造旧项目:从扫描到回归验证"> </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>   |  13小时前  |   <a href="/articletag/594_new_0_1.html" class="aLightGray" title="go">go</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="/articletag/39952_new_0_1.html" class="aLightGray" title="版本升级">版本升级</a> · <a href="javascript:;" class="aLightGray" title="回归测试">回归测试</a> <a href="javascript:;" class="aLightGray" title="Go 1.26">Go 1.26</a> <a href="javascript:;" class="aLightGray" title="go fix">go fix</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/620510.html" class="aBlack" target="_blank" title="Go 1.26 的 go fix 怎么安全改造旧项目:从扫描到回归验证">Go 1.26 的 go fix 怎么安全改造旧项目:从扫描到回归验证</a> </dt> <dd class="cont2"> <span><i class="view"></i>396浏览</span> <span class="collectBtn user_collection" data-id="620510" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620489.html" class="img_box" title="Go url.JoinPath 拼接 URL 为什么会改路径:斜杠、转义和 RawPath 边界"> <img src="/uploads/20260723/1784821675-go-url-joinpath-escape-branch.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go url.JoinPath 拼接 URL 为什么会改路径:斜杠、转义和 RawPath 边界"> </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/594_new_0_1.html" class="aLightGray" title="go">go</a> · <a href="/articletag/1116_new_0_1.html" class="aLightGray" title="net/url">net/url</a> · <a href="/articletag/2657_new_0_1.html" class="aLightGray" title="url">url</a> · <a href="/articletag/39743_new_0_1.html" class="aLightGray" title="HTTP客户端">HTTP客户端</a> · <a href="/articletag/40437_new_0_1.html" class="aLightGray" title="路径转义">路径转义</a> · <a href="javascript:;" class="aLightGray" title="Go教程">Go教程</a> <a href="javascript:;" class="aLightGray" title="url.JoinPath">url.JoinPath</a> <a href="javascript:;" class="aLightGray" title="PathEscape">PathEscape</a> <a href="javascript:;" class="aLightGray" title="RawPath">RawPath</a> <a href="javascript:;" class="aLightGray" title="URL拼接">URL拼接</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620489.html" class="aBlack" target="_blank" title="Go url.JoinPath 拼接 URL 为什么会改路径:斜杠、转义和 RawPath 边界">Go url.JoinPath 拼接 URL 为什么会改路径:斜杠、转义和 RawPath 边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>354浏览</span> <span class="collectBtn user_collection" data-id="620489" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620485.html" class="img_box" title="Go sync.Pool 适合缓存临时对象吗:Get、Put、GC 清空与基准测试边界"> <img src="/uploads/20260723/1784816031-go-sync-pool-benchmark-proof.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go sync.Pool 适合缓存临时对象吗:Get、Put、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天前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/620485.html" class="aBlack" target="_blank" title="Go sync.Pool 适合缓存临时对象吗:Get、Put、GC 清空与基准测试边界">Go sync.Pool 适合缓存临时对象吗:Get、Put、GC 清空与基准测试边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>261浏览</span> <span class="collectBtn user_collection" data-id="620485" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620483.html" class="img_box" title="Go context.WithCancel 后 goroutine 仍不退出怎么排查:从 done 通道到泄漏证据"> <img src="/uploads/20260722/1784711043-context-cancel-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go context.WithCancel 后 goroutine 仍不退出怎么排查:从 done 通道到泄漏证据"> </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/431_new_0_1.html" class="aLightGray" title="goroutine">goroutine</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="javascript:;" class="aLightGray" title="Go context.WithCancel">Go context.WithCancel</a> <a href="javascript:;" class="aLightGray" title="goroutine 泄漏">goroutine 泄漏</a> <a href="javascript:;" class="aLightGray" title="done 通道">done 通道</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620483.html" class="aBlack" target="_blank" title="Go context.WithCancel 后 goroutine 仍不退出怎么排查:从 done 通道到泄漏证据">Go context.WithCancel 后 goroutine 仍不退出怎么排查:从 done 通道到泄漏证据</a> </dt> <dd class="cont2"> <span><i class="view"></i>334浏览</span> <span class="collectBtn user_collection" data-id="620483" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620482.html" class="img_box" title="Go http.ServeContent 如何同时处理 Range 下载与 Last-Modified 缓存?"> <img src="/uploads/20260722/1784710373-servecontent-lastmodified-304.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go http.ServeContent 如何同时处理 Range 下载与 Last-Modified 缓存?"> </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天前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/620482.html" class="aBlack" target="_blank" title="Go http.ServeContent 如何同时处理 Range 下载与 Last-Modified 缓存?">Go http.ServeContent 如何同时处理 Range 下载与 Last-Modified 缓存?</a> </dt> <dd class="cont2"> <span><i class="view"></i>469浏览</span> <span class="collectBtn user_collection" data-id="620482" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620473.html" class="img_box" title="Go net/http 如何正确返回 ETag:If-None-Match 与 304 缓存协商"> <img src="/uploads/20260722/1784704486-etag-budget.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go net/http 如何正确返回 ETag:If-None-Match 与 304 缓存协商"> </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/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="/articletag/39732_new_0_1.html" class="aLightGray" title="net/http">net/http</a> · <a href="/articletag/40431_new_0_1.html" class="aLightGray" title="HTTP缓存">HTTP缓存</a> · <a href="javascript:;" class="aLightGray" title="Go ETag">Go ETag</a> <a href="javascript:;" class="aLightGray" title="If-None-Match">If-None-Match</a> <a href="javascript:;" class="aLightGray" title="304缓存">304缓存</a> <a href="javascript:;" class="aLightGray" title="http.ResponseWriter">http.ResponseWriter</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620473.html" class="aBlack" target="_blank" title="Go net/http 如何正确返回 ETag:If-None-Match 与 304 缓存协商">Go net/http 如何正确返回 ETag:If-None-Match 与 304 缓存协商</a> </dt> <dd class="cont2"> <span><i class="view"></i>395浏览</span> <span class="collectBtn user_collection" data-id="620473" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620472.html" class="img_box" title="Go atomic.Bool 怎么做运行时功能开关:并发读取、灰度切换与回滚"> <img src="/uploads/20260722/1784703918-go-atomic-bool-read-path.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go atomic.Bool 怎么做运行时功能开关:并发读取、灰度切换与回滚"> </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/40157_new_0_1.html" class="aLightGray" title="[]">[]</a> · <a href="javascript:;" class="aLightGray" title="[]">[]</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620472.html" class="aBlack" target="_blank" title="Go atomic.Bool 怎么做运行时功能开关:并发读取、灰度切换与回滚">Go atomic.Bool 怎么做运行时功能开关:并发读取、灰度切换与回滚</a> </dt> <dd class="cont2"> <span><i class="view"></i>270浏览</span> <span class="collectBtn user_collection" data-id="620472" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620466.html" class="img_box" title="Go JSON 解析怎么减少内存分配:Decoder、RawMessage 与基准测试边界"> <img src="/uploads/20260722/1784699099-go-json-parse-paths.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Go JSON 解析怎么减少内存分配:Decoder、RawMessage 与基准测试边界"> </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/307_new_0_1.html" class="aLightGray" title="JSON">JSON</a> · <a href="/articletag/438_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/729_new_0_1.html" class="aLightGray" title="性能优化">性能优化</a> · <a href="javascript:;" class="aLightGray" title="内存分配">内存分配</a> <a href="javascript:;" class="aLightGray" title="encoding/json">encoding/json</a> <a href="javascript:;" class="aLightGray" title="json.RawMessage">json.RawMessage</a> <a href="javascript:;" class="aLightGray" title="json.Decoder">json.Decoder</a> <a href="javascript:;" class="aLightGray" title="Go JSON">Go JSON</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620466.html" class="aBlack" target="_blank" title="Go JSON 解析怎么减少内存分配:Decoder、RawMessage 与基准测试边界">Go JSON 解析怎么减少内存分配:Decoder、RawMessage 与基准测试边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>206浏览</span> <span class="collectBtn user_collection" data-id="620466" 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/13109.html" target="_blank" title="ljg-skills - "Prompt之神"李继刚开源的 AI 技能集" class="img_box"> <img src="/uploads/ai/20260616/ljg-skills-icon-8bbe1468e5.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="ljg-skills - "Prompt之神"李继刚开源的 AI 技能集" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13109.html" class="aBlack" target="_blank" title="ljg-skills">ljg-skills</a></dt> <dd class="cont1 lineTwoOverflow"> ljg-skills 是李继刚开源的 AI 技能与提示词集合,面向大模型使用者整理了一批可复用的 prompt、角色设定和任务技能模板,适合用于学习提示词设计、搭建个人 AI 工作流和沉淀团队常用智能体能力。 </dd> <dd class="cont2">4662次使用</dd> </dl> </li> <li> <a href="/ai/13108.html" target="_blank" title="MELO音乐 - AI 音乐生成平台,支持多模态创作能力" class="img_box"> <img src="/uploads/ai/20260616/melo-icon-10bf590762.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="MELO音乐 - AI 音乐生成平台,支持多模态创作能力" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13108.html" class="aBlack" target="_blank" title="MELO音乐">MELO音乐</a></dt> <dd class="cont1 lineTwoOverflow"> MELO音乐是一站式AI视频与音乐制作助手,对标suno, udio的高品质体验。提供伴奏生成、原创写词、无损导出、哼唱识曲、混音变声等全套音频与短视频编辑工具。无论是流行Kpop、电音说唱、民谣古风、摇滚儿歌还是商用轻音乐,MELO为你免费谱曲,轻松做同款! </dd> <dd class="cont2">4274次使用</dd> </dl> </li> <li> <a href="/ai/13107.html" target="_blank" title="UniScribe - AI 免费在线音视频转文字平台" class="img_box"> <img src="/uploads/ai/20260616/uniscribe-icon-3c88366a15.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="UniScribe - AI 免费在线音视频转文字平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13107.html" class="aBlack" target="_blank" title="UniScribe">UniScribe</a></dt> <dd class="cont1 lineTwoOverflow"> UniScribe 是一款 AI 音视频转文字与内容整理工具,支持上传音频、视频文件或粘贴 YouTube 链接,自动生成转写文本、摘要、思维导图和关键问题,并支持多格式导出,适合会议记录、课程学习、访谈整理和内容创作复盘。 </dd> <dd class="cont2">4231次使用</dd> </dl> </li> <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">4451次使用</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">4411次使用</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/246016.html"/> <input type="hidden" name="__token__" value="74d116c547ae24ced14df8e24ec317bf" /> <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/246016.html"/> <input type="hidden" name="__token__" value="74d116c547ae24ced14df8e24ec317bf" /> <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>