当前位置:首页 > 文章列表 > Golang > Go教程 > Golang实现RSS抓取方法详解

Golang实现RSS抓取方法详解

2025-11-30 11:18:34 0浏览 收藏

本教程详解如何使用Golang实现RSS抓取,助力开发者快速获取网站内容。通过`net/http`包发送HTTP请求,获取XML格式的RSS源数据,并利用`encoding/xml`包将XML数据解析为Go结构体。文章详细讲解了如何定义结构体映射RSS的XML字段,例如Channel和Item,并通过xml标签绑定节点。同时,强调了错误处理和超时控制的重要性,确保程序的健壮性。本文提供完整示例代码,展示了如何抓取并打印文章标题、链接和发布时间等信息。对于更复杂的RSS抓取场景,建议使用`gofeed`等第三方库,它们能更好地处理不同格式的RSS源。掌握本文内容,你就能轻松构建自己的Golang RSS抓取器。

使用Go语言可通过net/http和encoding/xml包实现RSS抓取。首先定义结构体映射RSS的XML字段,包括Channel、Item等类型,利用xml标签绑定节点。通过http.Client发送带超时的请求获取响应体,再用xml.Unmarshal解析XML数据。需对网络错误和解析异常进行处理,确保程序健壮性。最终可遍历Items输出标题、链接、发布时间等信息。完整示例如下:1. 导入必要包;2. 定义结构体;3. 实现带超时的fetchRSS函数;4. 在main中调用并打印结果。对于复杂场景推荐使用gofeed等第三方库。

Golang如何实现简单的RSS抓取功能_Golang RSS抓取开发实践

在Go语言中实现一个简单的RSS抓取功能并不复杂。RSS(Really Simple Syndication)是一种基于XML的标准,常用于网站内容的订阅与分发,比如新闻站点、博客等。通过解析RSS源,我们可以获取文章标题、链接、发布时间和摘要等信息。

理解RSS结构

RSS文档本质上是XML格式,常见的结构包括</font>、<font color="#0000FF"><link></font>、<font color="#0000FF"><description></font>,以及包含每篇文章的<font color="#0000FF"><item></font>节点。例如:</p><pre><rss version="2.0"> <channel> <title>我的博客</title> <link>https://example.com</link> <item> <title>第一篇文章</title> <link>https://example.com/1</link> <pubDate>Mon, 01 Jan 2024 00:00:00 GMT</pubDate> <description>这是摘要内容</description> </item> </channel> </rss> </pre><p>要抓取这些数据,我们需要发送HTTP请求获取XML内容,然后将其解析为Go中的结构体。</p><h3><strong>使用标准库解析RSS</strong></h3><p>Go标准库没有直接支持RSS解析,但可以使用<font color="#0000FF">encoding/xml</font>包手动定义结构体来映射XML字段。以下是一个基础的结构体定义:</p><pre>type Item struct { Title string `xml:"title"` Link string `xml:"link"` Description string `xml:"description"` PubDate string `xml:"pubDate"` } <p>type Channel struct { Title string <code>xml:"title"</code> Link string <code>xml:"link"</code> Items []Item <code>xml:"item"</code> }</p><p>type RSS struct { Channel Channel <code>xml:"channel"</code> } </p></pre><p>接下来,使用<font color="#0000FF">net/http</font>获取RSS源内容,并用<font color="#0000FF">xml.Unmarshal</font>解析:</p><pre>func fetchRSS(url string) (*Channel, error) { resp, err := http.Get(url) if err != nil { return nil, err } defer resp.Body.Close() <pre class="brush:php;toolbar:false"><code>body, _ := io.ReadAll(resp.Body) var rss RSS if err := xml.Unmarshal(body, &amp;rss); err != nil { return nil, err } return &amp;rss.Channel, nil</code></pre><p>} </p></pre><h3><strong>添加错误处理与超时控制</strong></h3><p>实际开发中,网络请求可能失败或响应缓慢。建议设置HTTP客户端超时,避免程序卡住:</p><pre>client := &http.Client{ Timeout: 10 * time.Second, } resp, err := client.Get(url) </pre><p>同时,对XML解析过程进行容错处理。某些RSS源字段可能缺失或格式不规范,可使用指针类型或<font color="#0000FF">omitempty</font>标签提升健壮性。</p><h3><strong>完整示例:抓取并打印文章列表</strong></h3><p>将上述部分整合,可以写出一个完整的抓取程序:</p><pre>package main <p>import ( "encoding/xml" "fmt" "io" "net/http" "time" )</p><p>type Item struct { Title string <code>xml:"title"</code> Link string <code>xml:"link"</code> Description string <code>xml:"description"</code> PubDate string <code>xml:"pubDate"</code> }</p><p>type Channel struct { Title string <code>xml:"title"</code> Link string <code>xml:"link"</code> Items []Item <code>xml:"item"</code> }</p><p>type RSS struct { Channel Channel <code>xml:"channel"</code> }</p><p>func fetchRSS(url string) (<em>Channel, error) { client := &http.Client{Timeout: 10 </em> time.Second} resp, err := client.Get(url) if err != nil { return nil, err } defer resp.Body.Close()</p><pre class="brush:php;toolbar:false"><code>body, err := io.ReadAll(resp.Body) if err != nil { return nil, err } var rss RSS if err := xml.Unmarshal(body, &amp;rss); err != nil { return nil, err } return &amp;rss.Channel, nil</code></pre><p>}</p><p>func main() { channel, err := fetchRSS("<a target='_blank' href='https://www.17golang.com/gourl/?redirect=MDAwMDAwMDAwML57hpSHp6VpkrqbYLx2eayza4KafaOkbLS3zqSBrJvPsa5_0Ia6sWuR4Juaq6t9nq5roGCUgXuytMyero6Kn83GjHPXkraZo5qYYKa8n4agv3xtZJKQsKKu3LOifWSJ0bJ4mNuGqrluhq2Bqa-GlJ2-s4Flf32kbL-3s2uNrITfvoiHzobQsW4' rel='nofollow'>https://example.com/feed.xml</a>") if err != nil { fmt.Printf("抓取失败: %v\n", err) return }</p><pre>fmt.Printf("来源: %s\n", channel.Title) for _, item := range channel.Items { fmt.Printf("标题: %s\n", item.Title) fmt.Printf("链接: %s\n", item.Link) fmt.Printf("发布于: %s\n", item.PubDate) fmt.Println("---") }</pre><p>} </p></pre><p>基本上就这些。通过Go的<font color="#0000FF">net/http</font>和<font color="#0000FF">encoding/xml</font>包,我们可以轻松实现一个轻量级的RSS抓取器。如果项目更复杂,也可以考虑使用第三方库如<font color="#0000FF">github.com/mmcdole/gofeed</font>,它支持RSS和Atom,并自动处理多种格式差异。</p><p>理论要掌握,实操不能落!以上关于《Golang实现RSS抓取方法详解》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/402497.html" title="手机充电口歪了还能用吗?隐患与风险解析" class="img_box"> <img src="/uploads/20251130/1764472652692bb74c9473b.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="手机充电口歪了还能用吗?隐患与风险解析">手机充电口歪了还能用吗?隐患与风险解析 </a> <dl> <dt class="lineOverflow"><a href="/article/402497.html" title="手机充电口歪了还能用吗?隐患与风险解析" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">手机充电口歪了还能用吗?隐患与风险解析</dd> </dl> </div> <div class="cateItem"> <a href="/article/402499.html" title="QQ邮箱注册登录官网入口地址" class="img_box"> <img src="/uploads/20251130/1764472717692bb78d41295.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="QQ邮箱注册登录官网入口地址"> </a> <dl> <dt class="lineOverflow"><a href="/article/402499.html" class="aBlack" title="QQ邮箱注册登录官网入口地址">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">QQ邮箱注册登录官网入口地址</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/404650.html" class="img_box" title="Golangfmt库用法与格式化技巧解析"> <img src="/uploads/20251201/1764603936692db82040ccb.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golangfmt库用法与格式化技巧解析"> </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="javascript:;" class="aLightGray" title="格式化输出">格式化输出</a> <a href="javascript:;" class="aLightGray" title="printf">printf</a> <a href="javascript:;" class="aLightGray" title="fmt库">fmt库</a> <a href="javascript:;" class="aLightGray" title="格式化动词">格式化动词</a> <a href="javascript:;" class="aLightGray" title="Stringer接口">Stringer接口</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/404650.html" class="aBlack" target="_blank" title="Golangfmt库用法与格式化技巧解析">Golangfmt库用法与格式化技巧解析</a> </dt> <dd class="cont2"> <span><i class="view"></i>140浏览</span> <span class="collectBtn user_collection" data-id="404650" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404648.html" class="img_box" title="Golang配置Protobuf安装教程"> <img src="/uploads/20251201/1764603874692db7e29a17d.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang配置Protobuf安装教程"> </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/404648.html" class="aBlack" target="_blank" title="Golang配置Protobuf安装教程">Golang配置Protobuf安装教程</a> </dt> <dd class="cont2"> <span><i class="view"></i>147浏览</span> <span class="collectBtn user_collection" data-id="404648" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404646.html" class="img_box" title="Golang中介者模式实现与通信解耦技巧"> <img src="/uploads/20251201/1764603758692db76ea1200.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang中介者模式实现与通信解耦技巧"> </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/404646.html" class="aBlack" target="_blank" title="Golang中介者模式实现与通信解耦技巧">Golang中介者模式实现与通信解耦技巧</a> </dt> <dd class="cont2"> <span><i class="view"></i>378浏览</span> <span class="collectBtn user_collection" data-id="404646" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404640.html" class="img_box" title="Golang多协程通信技巧分享"> <img src="/uploads/20251201/1764603452692db63ce8213.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang多协程通信技巧分享"> </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/404640.html" class="aBlack" target="_blank" title="Golang多协程通信技巧分享">Golang多协程通信技巧分享</a> </dt> <dd class="cont2"> <span><i class="view"></i>255浏览</span> <span class="collectBtn user_collection" data-id="404640" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404622.html" class="img_box" title="Golang预定义错误变量全解析"> <img src="/uploads/20251201/1764602494692db27e3cb63.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang预定义错误变量全解析"> </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="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="错误处理">错误处理</a> <a href="javascript:;" class="aLightGray" title="自定义错误">自定义错误</a> <a href="javascript:;" class="aLightGray" title="errors.Is">errors.Is</a> <a href="javascript:;" class="aLightGray" title="预定义错误变量">预定义错误变量</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/404622.html" class="aBlack" target="_blank" title="Golang预定义错误变量全解析">Golang预定义错误变量全解析</a> </dt> <dd class="cont2"> <span><i class="view"></i>287浏览</span> <span class="collectBtn user_collection" data-id="404622" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404618.html" class="img_box" title="Golang如何判断变量类型?"> <img src="/uploads/20251201/1764602254692db18ee3249.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang如何判断变量类型?"> </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/404618.html" class="aBlack" target="_blank" title="Golang如何判断变量类型?">Golang如何判断变量类型?</a> </dt> <dd class="cont2"> <span><i class="view"></i>393浏览</span> <span class="collectBtn user_collection" data-id="404618" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404607.html" class="img_box" title="Golang云原生微服务实战教程"> <img src="/uploads/20251201/1764601716692daf74bbb34.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang云原生微服务实战教程"> </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/404607.html" class="aBlack" target="_blank" title="Golang云原生微服务实战教程">Golang云原生微服务实战教程</a> </dt> <dd class="cont2"> <span><i class="view"></i>310浏览</span> <span class="collectBtn user_collection" data-id="404607" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404557.html" class="img_box" title="Golang迭代器与懒加载结合应用"> <img src="/uploads/20251201/1764599440692da69031897.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang迭代器与懒加载结合应用"> </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小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/404557.html" class="aBlack" target="_blank" title="Golang迭代器与懒加载结合应用">Golang迭代器与懒加载结合应用</a> </dt> <dd class="cont2"> <span><i class="view"></i>110浏览</span> <span class="collectBtn user_collection" data-id="404557" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404542.html" class="img_box" title="Golangslicemap优化技巧分享"> <img src="/uploads/20251201/1764598719692da3bfdda53.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golangslicemap优化技巧分享"> </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="javascript:;" class="aLightGray" title="性能优化">性能优化</a> <a href="javascript:;" class="aLightGray" title="并发安全">并发安全</a> <a href="javascript:;" class="aLightGray" title="Golangslicemap">Golangslicemap</a> <a href="javascript:;" class="aLightGray" title="预设容量">预设容量</a> <a href="javascript:;" class="aLightGray" title="指针拷贝">指针拷贝</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/404542.html" class="aBlack" target="_blank" title="Golangslicemap优化技巧分享">Golangslicemap优化技巧分享</a> </dt> <dd class="cont2"> <span><i class="view"></i>412浏览</span> <span class="collectBtn user_collection" data-id="404542" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404540.html" class="img_box" title="Golang代理模式与访问控制实现解析"> <img src="/uploads/20251201/1764598718692da3bed666d.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang代理模式与访问控制实现解析"> </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小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/404540.html" class="aBlack" target="_blank" title="Golang代理模式与访问控制实现解析">Golang代理模式与访问控制实现解析</a> </dt> <dd class="cont2"> <span><i class="view"></i>423浏览</span> <span class="collectBtn user_collection" data-id="404540" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404503.html" class="img_box" title="Golang事件管理模块实现教程"> <img src="/uploads/20251201/1764596823692d9c57b2b94.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang事件管理模块实现教程"> </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>   |  4小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/404503.html" class="aBlack" target="_blank" title="Golang事件管理模块实现教程">Golang事件管理模块实现教程</a> </dt> <dd class="cont2"> <span><i class="view"></i>274浏览</span> <span class="collectBtn user_collection" data-id="404503" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/404467.html" class="img_box" title="Golang结构体字段动态赋值技巧"> <img src="/uploads/20251201/1764595114692d95aaa3f09.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Golang结构体字段动态赋值技巧"> </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>   |  4小时前  |   <a href="/special/3_new_0_1.html" target="_blank" class="aLightGray" title="golang">golang</a> <a href="javascript:;" class="aLightGray" title="指针">指针</a> <a href="javascript:;" class="aLightGray" title="reflect包">reflect包</a> <a href="javascript:;" class="aLightGray" title="结构体字段动态赋值">结构体字段动态赋值</a> <a href="javascript:;" class="aLightGray" title="运行时修改">运行时修改</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/404467.html" class="aBlack" target="_blank" title="Golang结构体字段动态赋值技巧">Golang结构体字段动态赋值技巧</a> </dt> <dd class="cont2"> <span><i class="view"></i>379浏览</span> <span class="collectBtn user_collection" data-id="404467" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> </ul> </div> </div> <div class="mainRight"> <!-- 右侧广告位banner --> <div class="rightContBox" style="margin-top: 0px;"> <div class="rightTit"> <a href="/courselist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">课程推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/course/9.html" class="img_box" target="_blank" title="前端进阶之JavaScript设计模式"> <img src="/uploads/20221222/52fd0f23a454c71029c2c72d206ed815.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="前端进阶之JavaScript设计模式"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/9.html" target="_blank" class="aBlack" title="前端进阶之JavaScript设计模式">前端进阶之JavaScript设计模式</a></dt> <dd class="cont1 lineTwoOverflow"> 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。 </dd> <dd class="cont2">543次学习</dd> </dl> </li> <li> <a href="/course/2.html" class="img_box" target="_blank" title="GO语言核心编程课程"> <img src="/uploads/20221221/634ad7404159bfefc6a54a564d437b5f.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="GO语言核心编程课程"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/2.html" target="_blank" class="aBlack" title="GO语言核心编程课程">GO语言核心编程课程</a></dt> <dd class="cont1 lineTwoOverflow"> 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。 </dd> <dd class="cont2">516次学习</dd> </dl> </li> <li> <a href="/course/74.html" class="img_box" target="_blank" title="简单聊聊mysql8与网络通信"> <img src="/uploads/20240103/bad35fe14edbd214bee16f88343ac57c.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="简单聊聊mysql8与网络通信"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/74.html" target="_blank" class="aBlack" title="简单聊聊mysql8与网络通信">简单聊聊mysql8与网络通信</a></dt> <dd class="cont1 lineTwoOverflow"> 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让 </dd> <dd class="cont2">500次学习</dd> </dl> </li> <li> <a href="/course/57.html" class="img_box" target="_blank" title="JavaScript正则表达式基础与实战"> <img src="/uploads/20221226/bbe4083bb3cb0dd135fb02c31c3785fb.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="JavaScript正则表达式基础与实战"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/57.html" target="_blank" class="aBlack" title="JavaScript正则表达式基础与实战">JavaScript正则表达式基础与实战</a></dt> <dd class="cont1 lineTwoOverflow"> 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。 </dd> <dd class="cont2">487次学习</dd> </dl> </li> <li> <a href="/course/28.html" class="img_box" target="_blank" title="从零制作响应式网站—Grid布局"> <img src="/uploads/20221223/ac110f88206daeab6c0cf38ebf5fe9ed.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="从零制作响应式网站—Grid布局"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/28.html" target="_blank" class="aBlack" title="从零制作响应式网站—Grid布局">从零制作响应式网站—Grid布局</a></dt> <dd class="cont1 lineTwoOverflow"> 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。 </dd> <dd class="cont2">485次学习</dd> </dl> </li> </ul> </div> <div class="rightContBox"> <div class="rightTit"> <a href="/ai.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">AI推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/ai/13100.html" target="_blank" title="ChatExcel酷表:告别Excel难题,北大团队AI助手助您轻松处理数据" class="img_box"> <img src="/uploads/20251027/176155320368ff2b3345c06.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="ChatExcel酷表:告别Excel难题,北大团队AI助手助您轻松处理数据" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13100.html" class="aBlack" target="_blank" title="ChatExcel酷表">ChatExcel酷表</a></dt> <dd class="cont1 lineTwoOverflow"> ChatExcel酷表是由北京大学团队打造的Excel聊天机器人,用自然语言操控表格,简化数据处理,告别繁琐操作,提升工作效率!适用于学生、上班族及政府人员。 </dd> <dd class="cont2">3163次使用</dd> </dl> </li> <li> <a href="/ai/13099.html" target="_blank" title="Any绘本:开源免费AI绘本创作工具深度解析" class="img_box"> <img src="/uploads/20251023/176120760368f9e5333da5f.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Any绘本:开源免费AI绘本创作工具深度解析" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13099.html" class="aBlack" target="_blank" title="Any绘本">Any绘本</a></dt> <dd class="cont1 lineTwoOverflow"> 探索Any绘本(anypicturebook.com/zh),一款开源免费的AI绘本创作工具,基于Google Gemini与Flux AI模型,让您轻松创作个性化绘本。适用于家庭、教育、创作等多种场景,零门槛,高自由度,技术透明,本地可控。 </dd> <dd class="cont2">3375次使用</dd> </dl> </li> <li> <a href="/ai/13098.html" target="_blank" title="可赞AI:AI驱动办公可视化智能工具,一键高效生成文档图表脑图" class="img_box"> <img src="/uploads/20251021/176103600268f746e238bb8.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="可赞AI:AI驱动办公可视化智能工具,一键高效生成文档图表脑图" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13098.html" class="aBlack" target="_blank" title="可赞AI">可赞AI</a></dt> <dd class="cont1 lineTwoOverflow"> 可赞AI,AI驱动的办公可视化智能工具,助您轻松实现文本与可视化元素高效转化。无论是智能文档生成、多格式文本解析,还是一键生成专业图表、脑图、知识卡片,可赞AI都能让信息处理更清晰高效。覆盖数据汇报、会议纪要、内容营销等全场景,大幅提升办公效率,降低专业门槛,是您提升工作效率的得力助手。 </dd> <dd class="cont2">3403次使用</dd> </dl> </li> <li> <a href="/ai/13097.html" target="_blank" title="星月写作:AI网文创作神器,助力爆款小说速成" class="img_box"> <img src="/uploads/20251014/176043000368ee07b3159d6.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="星月写作:AI网文创作神器,助力爆款小说速成" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13097.html" class="aBlack" target="_blank" title="星月写作">星月写作</a></dt> <dd class="cont1 lineTwoOverflow"> 星月写作是国内首款聚焦中文网络小说创作的AI辅助工具,解决网文作者从构思到变现的全流程痛点。AI扫榜、专属模板、全链路适配,助力新人快速上手,资深作者效率倍增。 </dd> <dd class="cont2">4506次使用</dd> </dl> </li> <li> <a href="/ai/13096.html" target="_blank" title="MagicLight.ai:叙事驱动AI动画视频创作平台 | 高效生成专业级故事动画" class="img_box"> <img src="/uploads/20251014/176040000268ed9282edf80.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="MagicLight.ai:叙事驱动AI动画视频创作平台 | 高效生成专业级故事动画" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13096.html" class="aBlack" target="_blank" title="MagicLight">MagicLight</a></dt> <dd class="cont1 lineTwoOverflow"> MagicLight.ai是全球首款叙事驱动型AI动画视频创作平台,专注于解决从故事想法到完整动画的全流程痛点。它通过自研AI模型,保障角色、风格、场景高度一致性,让零动画经验者也能高效产出专业级叙事内容。广泛适用于独立创作者、动画工作室、教育机构及企业营销,助您轻松实现创意落地与商业化。 </dd> <dd class="cont2">3784次使用</dd> </dl> </li> </ul> </div> <!-- 相关文章 --> <div class="rightContBox"> <div class="rightTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">相关文章</div> </div> <ul class="aboutArticleRList"> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/10762.html" class="aBlack" title="Golangmap实践及实现原理解析">Golangmap实践及实现原理解析</a></dt> <dd> <span class="left">2022-12-28</span> <span class="right">505浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/80612.html" class="aBlack" title="go和golang的区别解析:帮你选择合适的编程语言">go和golang的区别解析:帮你选择合适的编程语言</a></dt> <dd> <span class="left">2023-12-29</span> <span class="right">503浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/11451.html" class="aBlack" title="试了下Golang实现try catch的方法">试了下Golang实现try catch的方法</a></dt> <dd> <span class="left">2022-12-27</span> <span class="right">502浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/53565.html" class="aBlack" title="如何在go语言中实现高并发的服务器架构">如何在go语言中实现高并发的服务器架构</a></dt> <dd> <span class="left">2023-08-27</span> <span class="right">502浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/72902.html" class="aBlack" title="提升工作效率的Go语言项目开发经验分享">提升工作效率的Go语言项目开发经验分享</a></dt> <dd> <span class="left">2023-11-03</span> <span class="right">502浏览</span> </dd> </dl> </li> </ul> </div> </div> </div> <div class="footer"> <div class="footerIn"> <div class="footLeft"> <div class="linkBox"> <a href="/about/1.html" target="_blank" class="aBlack" title="关于我们">关于我们</a> <a href="/about/5.html" target="_blank" class="aBlack" title="免责声明">免责声明</a> <a href="#" class="aBlack" title="意见反馈">意见反馈</a> <a href="/about/2.html" class="aBlack" target="_blank" title="联系我们">联系我们</a> <a href="/send.html" class="aBlack" title="广告合作">内容提交</a> </div> <div class="footTip">Golang学习网:公益在线Go学习平台,帮助Go学习者快速成长!</div> <div class="shareBox"> <span><i class="qq"></i>技术交流群</span> </div> <div class="copyRight"> Copyright 2023 http://www.17golang.com/ All Rights Reserved | <a href="https://beian.miit.gov.cn/" target="_blank" title="备案">苏ICP备2023003363号-1</a> </div> </div> <div class="footRight"> <ul class="encodeList"> <li> <div class="encodeImg"> <img src="/assets/examples/qrcode_for_gh.jpg" alt="Golang学习网"> </div> <div class="tit">关注公众号</div> <div class="tip">Golang学习网</div> </li> <div class="clear"></div> </ul> </div> <div class="clear"></div> </div> </div> <!-- 微信登录弹窗 --> <style> .popupBg .n-error{ color: red; } </style> <div class="popupBg"> <div class="loginBoxBox"> <div class="imgbg"> <img src="/assets/images/leftlogo.jpg" alt=""> </div> <!-- 微信登录 --> <div class="loginInfo encodeLogin" style="display: none;"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.passwordLogin').show();"> <div class="tip">密码登录在这里</div> </div> <div class="encodeInfo"> <div class="tit"><i></i> 微信扫码登录或注册</div> <div class="encodeImg"> <span id="wx_login_qrcode"><img src="/assets/examples/code.png" alt="二维码"></span> <!-- <div class="refreshBox"> <p>二维码失效</p> <button type="button" class="create_wxqrcode">刷新1111</button> </div> --> </div> <div class="tip">打开微信扫一扫,快速登录/注册</div> </div> <div class="beforeLoginTip">登录即同意 <a href="#" class="aBlue" title="用户协议">用户协议</a> 和 <a href="#" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 密码登录 --> <div class="loginInfo passwordLogin"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.encodeLogin').show();"> <div class="tip">微信登录更方便</div> </div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem loginFormLi curr">密码登录</li> <li class="selfTabItem registerFormBox ">注册账号</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont loginFormBox" style="display: block;"> <form name="form" id="login-form" class="form-vertical form" method="POST" action="/index/user/login"> <input type="hidden" name="url" value="//www.17golang.com/article/402498.html"/> <input type="hidden" name="__token__" value="10e3b63699c65c5e17751a88ddc39e2d" /> <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/402498.html"/> <input type="hidden" name="__token__" value="10e3b63699c65c5e17751a88ddc39e2d" /> <div class="form-group" style="height:70px;"> <input type="text" name="email" id="email2" data-rule="required;email" class="form-control" placeholder="邮箱"> </div> <div class="form-group" style="height:70px;"> <input type="text" id="username" name="username" data-rule="required;username" class="form-control" placeholder="用户名必须3-30个字符"> </div> <div class="form-group" style="height:70px;"> <input type="password" id="password2" name="password" data-rule="required;password" class="form-control" placeholder="密码必须6-30个字符"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="loginBtn"> <button type="submit">注册</button> </div> </form> </div> </div> </div> <div class="beforeLoginTip">登录即同意 <a href="https://www.17golang.com/about/3.html" target="_blank" class="aBlue" title="用户协议">用户协议</a> 和 <a href="https://www.17golang.com/about/4.html" target="_blank" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 重置密码 --> <div class="loginInfo passwordForget"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="returnLogin cursorPointer" onclick="$('.passwordForget').hide();$('.passwordLogin').show();">返回登录</div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem">重置密码</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont"> <form id="resetpwd-form" class="form-horizontal form-layer nice-validator n-default n-bootstrap form" method="POST" action="/api/user/resetpwd.html" novalidate="novalidate"> <div style="height:70px;"> <input type="text" class="form-control" id="email" name="email" value="" placeholder="输入邮箱" aria-invalid="true"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <a href="javascript:;" class="btn btn-primary btn-captcha cursorPointer" style="background: #2080F8; border-radius: 4px; color: #fff; padding: 12px; position: absolute;" data-url="/api/ems/send.html" data-type="email" data-event="resetpwd">发送验证码</a> </span> </div> <input type="password" class="form-control" id="newpassword" name="newpassword" value="" placeholder="请输入6-18位密码"> <div class="loginBtn mt25"> <button type="submit">重置密码</button> </div> </form> </div> </div> </div> </div> </div> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?3dc5666f6478c7bf39cd5c91e597423d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/require.js" data-main="/assets/js/require-frontend.js?v=1671101972"></script> </body> </html>