当前位置:首页 > 文章列表 > 科技周边 > 人工智能 > 豆包AI解析XML数据技巧

豆包AI解析XML数据技巧

2025-07-02 13:55:48 0浏览 收藏

怎么入门科技周边编程?需要学习哪些知识点?这是新手们刚接触编程时常见的问题;下面golang学习网就来给大家整理分享一些知识点,希望能够给初学者一些帮助。本篇文章就来介绍《豆包AI解析Python XML数据方法》,涉及到,有需要的可以收藏一下

Python解析XML因模块多样、易用性强被广泛使用,豆包AI可在代码生成和调试中提供有效帮助。1. 选择Python解析XML因其标准库如ElementTree、minidom和lxml各具优势,适合不同场景;2. ElementTree解析流程简洁,可通过parse加载文件或fromstring解析字符串,快速获取节点信息;3. 提取指定标签数据可用findall结合XPath表达式,灵活高效;4. 处理带命名空间的XML需在查找时引入命名空间映射,豆包AI可根据示例自动识别并生成正确代码。

用豆包AI解析Python中的XML文件数据

XML 文件在很多数据交换场景中依然被广泛使用,特别是在一些老旧系统或特定行业的接口中。Python 提供了多种解析 XML 的方式,而豆包 AI(Doubao)作为一款实用的 AI 工具,可以在你处理 XML 解析时提供辅助建议、代码示例和调试帮助。

用豆包AI解析Python中的XML文件数据

1. 为什么选择 Python 解析 XML?

Python 标准库中提供了多个用于处理 XML 的模块,比如 xml.etree.ElementTreexml.dom.minidomlxml 等。这些模块各有特点:

用豆包AI解析Python中的XML文件数据
  • ElementTree:轻量级,适合大多数常见任务
  • minidom:基于 DOM,结构清晰但性能略差
  • lxml:功能强大,支持 XPath 和命名空间

如果你是初学者或者项目不涉及复杂 XML 结构,推荐使用 ElementTree。如果需要更高级的功能,可以考虑 lxml

2. 使用 ElementTree 解析 XML 的基本流程

这是最常用的方式之一,语法简洁,学习成本低。

用豆包AI解析Python中的XML文件数据
import xml.etree.ElementTree as ET

tree = ET.parse('example.xml')  # 加载文件
root = tree.getroot()           # 获取根节点

for child in root:
    print(child.tag, child.attrib)  # 打印每个子节点标签和属性

如果你有一个字符串而不是文件,可以用 ET.fromstring() 方法直接解析字符串内容。

豆包 AI 可以帮你快速写出这类基础代码,还能根据你的 XML 内容自动分析结构并生成提取字段的代码片段。

3. 如何提取指定标签的数据?

假设你想从 XML 中提取所有 节点下的 </code> 内容,可以这样写:</p><pre class="brush:language-python;toolbar:false;">for book in root.findall('book'): title = book.find('title').text print(title)</pre><p>也可以使用 XPath 表达式来简化查找,例如:</p><pre class="brush:language-python;toolbar:false;">for title in root.findall('.//title'): print(title.text)</pre><p>如果你不确定 XML 的结构,或者嵌套层级比较复杂,可以把 XML 内容发给豆包 AI,它能帮你找出合适的路径表达式,并生成提取逻辑。</p><blockquote><p>小技巧:XPath 是一个强大的查询语言,掌握几个基本表达式就能应对大部分需求:</p><ul><li><code>.</code> 表示当前节点</li><li><code>//</code> 表示递归查找</li><li><code>[@attr='value']</code> 用于按属性筛选</li></ul></blockquote><h3>4. 处理带命名空间的 XML 文件</h3><p>这是一个容易出错的地方。如果你的 XML 包含命名空间(namespace),直接用上面的方法可能找不到任何数据。</p><p>解决办法是在查找时带上命名空间前缀,例如:</p><pre class="brush:language-python;toolbar:false;">ns = {'bk': 'http://example.com/ns/book'} for title in root.findall('.//bk:title', ns): print(title.text)</pre><p>豆包 AI 在这方面也能帮上忙,只要你给出带有命名空间的 XML 示例,它会提醒你注意命名空间问题,并给出完整代码。</p><hr><p>基本上就这些。XML 文件虽然不如 JSON 流行,但在某些领域仍然很常见。Python 本身已经提供了不错的支持,再结合豆包 AI 的辅助,处理起来其实并不难。</p><p>理论要掌握,实操不能落!以上关于《豆包AI解析XML数据技巧》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/248133.html" title="Golang中介者模式实现与通信解耦技巧" class="img_box"> <img src="/uploads/20250702/17514356696864c99541770.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Golang中介者模式实现与通信解耦技巧">Golang中介者模式实现与通信解耦技巧 </a> <dl> <dt class="lineOverflow"><a href="/article/248133.html" title="Golang中介者模式实现与通信解耦技巧" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">Golang中介者模式实现与通信解耦技巧</dd> </dl> </div> <div class="cateItem"> <a href="/article/248135.html" title="Linux下nm命令查看二进制符号表详解" class="img_box"> <img src="/uploads/20250702/17514358176864ca299b0d5.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Linux下nm命令查看二进制符号表详解"> </a> <dl> <dt class="lineOverflow"><a href="/article/248135.html" class="aBlack" title="Linux下nm命令查看二进制符号表详解">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">Linux下nm命令查看二进制符号表详解</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/619988.html" class="img_box" title="AI 知识库回答跑偏怎么办:RAG 检索、重排和引用检查完整流程"> <img src="/uploads/20260616/1781588861-ai-rag-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI 知识库回答跑偏怎么办:RAG 检索、重排和引用检查完整流程"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  9小时前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/17791_new_0_1.html" class="aLightGray" title="rag">rag</a> · <a href="/articletag/36940_new_0_1.html" class="aLightGray" title="知识库">知识库</a> · <a href="/articletag/39914_new_0_1.html" class="aLightGray" title="AI工程实践">AI工程实践</a> · <a href="javascript:;" class="aLightGray" title="人工智能">人工智能</a> <a href="javascript:;" class="aLightGray" title="RAG">RAG</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/619988.html" class="aBlack" target="_blank" title="AI 知识库回答跑偏怎么办:RAG 检索、重排和引用检查完整流程">AI 知识库回答跑偏怎么办:RAG 检索、重排和引用检查完整流程</a> </dt> <dd class="cont2"> <span><i class="view"></i>419浏览</span> <span class="collectBtn user_collection" data-id="619988" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619982.html" class="img_box" title="AI Agent 交接跑偏怎么办:从意图检查到交接摘要一步步排查"> <img src="/uploads/20260616/1781582900-ai-agent-handoff-drift.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI Agent 交接跑偏怎么办:从意图检查到交接摘要一步步排查"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  10小时前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/17635_new_0_1.html" class="aLightGray" title="ai agent">ai agent</a> · <a href="/articletag/39701_new_0_1.html" class="aLightGray" title="工程实践">工程实践</a> · <a href="javascript:;" class="aLightGray" title="AI Agent">AI Agent</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="交接摘要">交接摘要</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619982.html" class="aBlack" target="_blank" title="AI Agent 交接跑偏怎么办:从意图检查到交接摘要一步步排查">AI Agent 交接跑偏怎么办:从意图检查到交接摘要一步步排查</a> </dt> <dd class="cont2"> <span><i class="view"></i>170浏览</span> <span class="collectBtn user_collection" data-id="619982" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619954.html" class="img_box" title="AI 提示词回归测试实战:小样本集、评分规则和上线前对比"> <img src="/uploads/20260615/1781496693-ai-prompt-regression-fix-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI 提示词回归测试实战:小样本集、评分规则和上线前对比"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  1天前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/20009_new_0_1.html" class="aLightGray" title="质量检查">质量检查</a> · <a href="/articletag/23230_new_0_1.html" class="aLightGray" title="AI应用">AI应用</a> · <a href="/articletag/39818_new_0_1.html" class="aLightGray" title="提示词工程">提示词工程</a> · <a href="/articletag/39870_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="人工复核">人工复核</a> <a href="javascript:;" class="aLightGray" title="AI提示词">AI提示词</a> <a href="javascript:;" class="aLightGray" title="评分规则">评分规则</a> <a href="javascript:;" class="aLightGray" title="上线检查">上线检查</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619954.html" class="aBlack" target="_blank" title="AI 提示词回归测试实战:小样本集、评分规则和上线前对比">AI 提示词回归测试实战:小样本集、评分规则和上线前对比</a> </dt> <dd class="cont2"> <span><i class="view"></i>475浏览</span> <span class="collectBtn user_collection" data-id="619954" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619939.html" class="img_box" title="AI Agent Tracing 实战:工具调用、护栏和人工确认怎么追踪"> <img src="/uploads/20260613/1781350589-ai-agent-guardrail-review.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI Agent Tracing 实战:工具调用、护栏和人工确认怎么追踪"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  3天前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/16856_new_0_1.html" class="aLightGray" title="tracing">tracing</a> · <a href="/articletag/17635_new_0_1.html" class="aLightGray" title="ai agent">ai agent</a> · <a href="/articletag/39692_new_0_1.html" class="aLightGray" title="可观测性">可观测性</a> · <a href="/articletag/39799_new_0_1.html" class="aLightGray" title="工具调用">工具调用</a> · <a href="javascript:;" class="aLightGray" title="可观测性">可观测性</a> <a href="javascript:;" class="aLightGray" title="AI Agent">AI Agent</a> <a href="javascript:;" class="aLightGray" title="Tracing">Tracing</a> <a href="javascript:;" class="aLightGray" title="工具调用">工具调用</a> <a href="javascript:;" class="aLightGray" title="OpenAI Agents SDK">OpenAI Agents SDK</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619939.html" class="aBlack" target="_blank" title="AI Agent Tracing 实战:工具调用、护栏和人工确认怎么追踪">AI Agent Tracing 实战:工具调用、护栏和人工确认怎么追踪</a> </dt> <dd class="cont2"> <span><i class="view"></i>292浏览</span> <span class="collectBtn user_collection" data-id="619939" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619925.html" class="img_box" title="AI Agent 工具权限分级实战:读、写、发布三类操作怎么管"> <img src="/uploads/20260613/1781337415-ai-agent-permission-tiers.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI Agent 工具权限分级实战:读、写、发布三类操作怎么管"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  3天前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/17635_new_0_1.html" class="aLightGray" title="ai agent">ai agent</a> · <a href="/articletag/39799_new_0_1.html" class="aLightGray" title="工具调用">工具调用</a> · <a href="/articletag/39830_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="AI Agent">AI Agent</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/619925.html" class="aBlack" target="_blank" title="AI Agent 工具权限分级实战:读、写、发布三类操作怎么管">AI Agent 工具权限分级实战:读、写、发布三类操作怎么管</a> </dt> <dd class="cont2"> <span><i class="view"></i>379浏览</span> <span class="collectBtn user_collection" data-id="619925" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619914.html" class="img_box" title="AI 输出质检流水线实战:规则检查、结构化结果和人工兜底"> <img src="/uploads/20260613/1781315460-ai-quality-decision-path.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI 输出质检流水线实战:规则检查、结构化结果和人工兜底"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  3天前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/23230_new_0_1.html" class="aLightGray" title="AI应用">AI应用</a> · <a href="/articletag/39816_new_0_1.html" class="aLightGray" title="结构化输出">结构化输出</a> · <a href="/articletag/39817_new_0_1.html" class="aLightGray" title="内容质检">内容质检</a> · <a href="/articletag/39818_new_0_1.html" class="aLightGray" title="提示词工程">提示词工程</a> · <a href="javascript:;" class="aLightGray" title="AI">AI</a> <a href="javascript:;" class="aLightGray" title="提示词">提示词</a> <a href="javascript:;" class="aLightGray" title="结构化输出">结构化输出</a> <a href="javascript:;" class="aLightGray" title="JSON Schema">JSON Schema</a> <a href="javascript:;" class="aLightGray" title="质检流水线">质检流水线</a> <a href="javascript:;" class="aLightGray" title="人工兜底">人工兜底</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619914.html" class="aBlack" target="_blank" title="AI 输出质检流水线实战:规则检查、结构化结果和人工兜底">AI 输出质检流水线实战:规则检查、结构化结果和人工兜底</a> </dt> <dd class="cont2"> <span><i class="view"></i>394浏览</span> <span class="collectBtn user_collection" data-id="619914" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619895.html" class="img_box" title="AI 知识库分块实战:按标题层级切文档,减少回答跑偏"> <img src="/uploads/20260613/1781300141-ai-chunking-ingest-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI 知识库分块实战:按标题层级切文档,减少回答跑偏"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  3天前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/17791_new_0_1.html" class="aLightGray" title="rag">rag</a> · <a href="/articletag/36940_new_0_1.html" class="aLightGray" title="知识库">知识库</a> · <a href="/articletag/39701_new_0_1.html" class="aLightGray" title="工程实践">工程实践</a> · <a href="/articletag/39801_new_0_1.html" class="aLightGray" title="向量检索">向量检索</a> · <a href="javascript:;" class="aLightGray" title="元数据">元数据</a> <a href="javascript:;" class="aLightGray" title="RAG">RAG</a> <a href="javascript:;" class="aLightGray" title="embedding">embedding</a> <a href="javascript:;" class="aLightGray" title="向量检索">向量检索</a> <a href="javascript:;" class="aLightGray" title="AI知识库">AI知识库</a> <a href="javascript:;" class="aLightGray" title="文档分块">文档分块</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619895.html" class="aBlack" target="_blank" title="AI 知识库分块实战:按标题层级切文档,减少回答跑偏">AI 知识库分块实战:按标题层级切文档,减少回答跑偏</a> </dt> <dd class="cont2"> <span><i class="view"></i>101浏览</span> <span class="collectBtn user_collection" data-id="619895" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619892.html" class="img_box" title="AI 工具调用落地实战:JSON Schema、参数校验和人工兜底"> <img src="/uploads/20260613/1781296492-ai-tool-call-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI 工具调用落地实战:JSON Schema、参数校验和人工兜底"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  3天前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/23230_new_0_1.html" class="aLightGray" title="AI应用">AI应用</a> · <a href="/articletag/39701_new_0_1.html" class="aLightGray" title="工程实践">工程实践</a> · <a href="/articletag/39799_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="参数校验">参数校验</a> <a href="javascript:;" class="aLightGray" title="AI工具调用">AI工具调用</a> <a href="javascript:;" class="aLightGray" title="JSON Schema">JSON Schema</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619892.html" class="aBlack" target="_blank" title="AI 工具调用落地实战:JSON Schema、参数校验和人工兜底">AI 工具调用落地实战:JSON Schema、参数校验和人工兜底</a> </dt> <dd class="cont2"> <span><i class="view"></i>233浏览</span> <span class="collectBtn user_collection" data-id="619892" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619864.html" class="img_box" title="RAG 召回评估实战:用向量检索和重排序减少答非所问"> <img src="/uploads/20260612/1781262646-rag-quality-loop.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="RAG 召回评估实战:用向量检索和重排序减少答非所问"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  4天前  |   <a href="/articletag/4813_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a> · <a href="/articletag/17791_new_0_1.html" class="aLightGray" title="rag">rag</a> · <a href="/articletag/23230_new_0_1.html" class="aLightGray" title="AI应用">AI应用</a> · <a href="/articletag/39773_new_0_1.html" class="aLightGray" title="向量数据库">向量数据库</a> · <a href="javascript:;" class="aLightGray" title="RAG">RAG</a> <a href="javascript:;" class="aLightGray" title="embedding">embedding</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/619864.html" class="aBlack" target="_blank" title="RAG 召回评估实战:用向量检索和重排序减少答非所问">RAG 召回评估实战:用向量检索和重排序减少答非所问</a> </dt> <dd class="cont2"> <span><i class="view"></i>174浏览</span> <span class="collectBtn user_collection" data-id="619864" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619699.html" class="img_box" title="AI绘画工具安装与配置教程"> <img src="/uploads/20260601/17802916666a1d1852d5445.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="AI绘画工具安装与配置教程"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  2星期前  |   <a href="javascript:;" class="aLightGray" title="AI绘画">AI绘画</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619699.html" class="aBlack" target="_blank" title="AI绘画工具安装与配置教程">AI绘画工具安装与配置教程</a> </dt> <dd class="cont2"> <span><i class="view"></i>339浏览</span> <span class="collectBtn user_collection" data-id="619699" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619698.html" class="img_box" title="海螺AI语音功能测评与体验分享"> <img src="/uploads/6197/fd51d5c005fe0b1d8426239dded1700f.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="海螺AI语音功能测评与体验分享"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  2星期前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/619698.html" class="aBlack" target="_blank" title="海螺AI语音功能测评与体验分享">海螺AI语音功能测评与体验分享</a> </dt> <dd class="cont2"> <span><i class="view"></i>260浏览</span> <span class="collectBtn user_collection" data-id="619698" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619687.html" class="img_box" title="ChatGPT读不了加密PDF?先解密再上传"> <img src="/uploads/20260601/17802912866a1d16d6bfdba.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="ChatGPT读不了加密PDF?先解密再上传"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/82_new_0_1.html" class="aLightGray" title="科技周边">科技周边</a> · <a href="/articlelist/81_new_0_1.html" class="aLightGray" title="人工智能">人工智能</a>   |  2星期前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/619687.html" class="aBlack" target="_blank" title="ChatGPT读不了加密PDF?先解密再上传">ChatGPT读不了加密PDF?先解密再上传</a> </dt> <dd class="cont2"> <span><i class="view"></i>438浏览</span> <span class="collectBtn user_collection" data-id="619687" 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">130次使用</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">150次使用</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">129次使用</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">284次使用</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">287次使用</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/29353.html" class="aBlack" title="GPT-4王者加冕!读图做题性能炸天,凭自己就能考上斯坦福">GPT-4王者加冕!读图做题性能炸天,凭自己就能考上斯坦福</a></dt> <dd> <span class="left">2023-04-25</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/28953.html" class="aBlack" title="单块V100训练模型提速72倍!尤洋团队新成果获AAAI 2023杰出论文奖">单块V100训练模型提速72倍!尤洋团队新成果获AAAI 2023杰出论文奖</a></dt> <dd> <span class="left">2023-04-24</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/29528.html" class="aBlack" title="ChatGPT 真的会接管世界吗?">ChatGPT 真的会接管世界吗?</a></dt> <dd> <span class="left">2023-04-13</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/30028.html" class="aBlack" title="VR的终极形态是「假眼」?Neuralink前联合创始人掏出新产品:科学之眼!">VR的终极形态是「假眼」?Neuralink前联合创始人掏出新产品:科学之眼!</a></dt> <dd> <span class="left">2023-04-30</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/30733.html" class="aBlack" title="实现实时制造可视性优势有哪些?">实现实时制造可视性优势有哪些?</a></dt> <dd> <span class="left">2023-04-15</span> <span class="right">501浏览</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/248134.html"/> <input type="hidden" name="__token__" value="2a7693f52c7108d92e37cd84e8faa59b" /> <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/248134.html"/> <input type="hidden" name="__token__" value="2a7693f52c7108d92e37cd84e8faa59b" /> <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>