当前位置:首页 > 文章列表 > 文章 > python教程 > BeautifulSoup提取HTML生成新文档方法

BeautifulSoup提取HTML生成新文档方法

2025-10-25 09:18:29 0浏览 收藏

亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《用BeautifulSoup提取HTML并生成新文档》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下,希望所有认真读完的童鞋们,都有实质性的提高。

使用BeautifulSoup选择性提取HTML元素并构建新HTML文档

本文详细介绍了如何利用Python的BeautifulSoup库,从现有HTML文件中高效地提取指定标签及其内容,并构建一个新的HTML文档。通过迭代预定义的标签筛选规则,结合BeautifulSoup的find方法和append功能,我们能够避免繁琐的字符串拼接,实现更简洁、更具可维护性的HTML元素筛选与重构。

挑战:传统字符串拼接的局限性

在处理HTML文档时,我们经常需要从一个现有页面中提取特定部分,并将其组合成一个新的HTML文件。一种直观但效率不高的方法是,使用BeautifulSoup解析原始HTML,然后手动提取每个目标元素的字符串表示,并通过字符串拼接的方式构建新页面的HTML内容。例如:

from bs4 import BeautifulSoup

with open('P:/Test.html', 'r') as f:
    contents = f.read()
    soup= BeautifulSoup(contents, 'html.parser')

NewHTML = ""
NewHTML+="\n"+str(soup.find('title'))
NewHTML+="\n"+str(soup.find('p', attrs={'class': 'm-b-0'}))
NewHTML+="\n"+str(soup.find('div', attrs={'id' :'right-col'}))
NewHTML+= ""

with open("output1.html", "w") as file:
    file.write(NewHTML)

这种方法虽然能够实现目标,但存在明显的局限性:

  1. 可维护性差:当需要提取的元素数量增多或结构变得复杂时,手动拼接字符串会变得异常繁琐且容易出错。
  2. 非BeautifulSoup惯用方式:BeautifulSoup提供了强大的API来操作HTML树结构,直接拼接字符串未能充分利用这些功能。
  3. 潜在的解析问题:手动拼接可能导致HTML结构不完整或格式不正确,尤其是在处理包含特殊字符或嵌套结构的元素时。

为了解决这些问题,我们可以采用BeautifulSoup提供的方法,以更优雅和健壮的方式构建新的HTML文档。

核心策略:BeautifulSoup的元素操作

BeautifulSoup允许我们像操作DOM一样操作HTML元素。其关键在于:

  1. 创建新的BeautifulSoup对象:将其作为新HTML文档的容器。
  2. 利用find()或find_all()定位元素:在原始HTML中找到需要提取的元素。
  3. 使用append()方法追加元素:将找到的元素(BeautifulSoup Tag对象)直接添加到新HTML文档的相应位置(如body标签内)。

这种方法避免了字符串层面的操作,直接在BeautifulSoup的解析树层面进行,确保了HTML结构的正确性和一致性。

实现步骤详解

下面将详细介绍如何通过BeautifulSoup的append方法,选择性地从一个HTML页面中提取特定标签并构建一个新的HTML文件。

1. 加载源HTML文档

首先,我们需要读取并解析包含源内容的HTML文件。

from bs4 import BeautifulSoup

# 假设原始HTML文件名为 'Test.html'
with open('Test.html', 'r', encoding='utf-8') as f:
    contents = f.read()
    soup = BeautifulSoup(contents, 'html.parser')

注意:为了避免编码问题,建议在打开文件时明确指定编码,例如encoding='utf-8'。

2. 初始化目标HTML结构

创建一个新的BeautifulSoup对象,作为我们即将构建的新HTML文档的骨架。通常,我们会从一个基本的结构开始。

new_html = BeautifulSoup("", 'html.parser')

此时,new_html是一个空的HTML文档结构,其body标签是我们可以向其中追加元素的根节点。

3. 定义元素筛选规则

为了灵活地选择需要保留的元素,我们可以定义一个列表,其中包含要提取的标签名称或带有属性的标签信息。

  • 对于仅按标签名筛选的元素,可以直接使用字符串。
  • 对于需要按标签名和属性筛选的元素,可以使用字典,键为标签名,值为属性字典。
tags_to_keep = [
    'title',                               # 提取  标签
    {'p': {'class': 'm-b-0'}},             # 提取 class 为 'm-b-0' 的 <p> 标签
    {'div': {'id': 'right-col'}}           # 提取 id 为 'right-col' 的 <div> 标签
]</pre><h4>4. 迭代筛选并追加元素</h4><p>遍历tags_to_keep列表。根据每个元素的类型(字符串或字典),使用soup.find()方法在原始soup对象中查找对应的元素,然后将其追加到new_html.body中。</p><pre class="brush:php;toolbar:false">for tag_rule in tags_to_keep:
    found_element = None
    if isinstance(tag_rule, str):
        # 如果是字符串,按标签名查找
        found_element = soup.find(tag_rule)
    elif isinstance(tag_rule, dict):
        # 如果是字典,提取标签名和属性进行查找
        tag_name = list(tag_rule.keys())[0]
        tag_attrs = tag_rule[tag_name]
        found_element = soup.find(tag_name, attrs=tag_attrs)

    # 检查是否找到元素,避免追加 None
    if found_element:
        new_html.body.append(found_element)</pre><h4>5. 保存新HTML文件</h4><p>最后,将构建好的new_html对象转换为字符串,并写入到一个新的HTML文件中。</p><pre class="brush:php;toolbar:false">with open("output1.html", "w", encoding='utf-8') as file:
    file.write(str(new_html))</pre><h3>示例代码</h3><p>将上述步骤整合到一起,完整的实现代码如下:</p><pre class="brush:php;toolbar:false">from bs4 import BeautifulSoup

# 1. 加载源HTML文档
with open('Test.html', 'r', encoding='utf-8') as f:
    contents = f.read()
    soup = BeautifulSoup(contents, 'html.parser')

# 2. 初始化目标HTML结构
new_html = BeautifulSoup("<html><body></body></html>", 'html.parser')

# 3. 定义元素筛选规则
tags_to_keep = [
    'title',                               # 提取 <title> 标签
    {'p': {'class': 'm-b-0'}},             # 提取 class 为 'm-b-0' 的 <p> 标签
    {'div': {'id': 'right-col'}}           # 提取 id 为 'right-col' 的 <div> 标签
]

# 4. 迭代筛选并追加元素
for tag_rule in tags_to_keep:
    found_element = None
    if isinstance(tag_rule, str):
        # 如果是字符串,按标签名查找
        found_element = soup.find(tag_rule)
    elif isinstance(tag_rule, dict):
        # 如果是字典,提取标签名和属性进行查找
        tag_name = list(tag_rule.keys())[0]
        tag_attrs = tag_rule[tag_name]
        found_element = soup.find(tag_name, attrs=tag_attrs)

    # 检查是否找到元素,避免追加 None
    if found_element:
        # Beautiful Soup的append方法会将元素及其所有子元素一并追加
        new_html.body.append(found_element)

# 5. 保存新HTML文件
with open("output1.html", "w", encoding='utf-8') as file:
    file.write(str(new_html))

print("新HTML文件 'output1.html' 已生成。")</pre><h3>源HTML示例</h3><p>为了更好地理解上述代码的运行效果,假设Test.html文件内容如下:</p><pre class="brush:php;toolbar:false"><!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>测试页面


    

这是一个标题

这是一个带有特定类名的段落。

左侧列内容。

右侧列内容。

更多右侧内容。

这是另一个普通段落。

生成结果预览

运行上述Python代码后,output1.html文件将包含以下内容:


 
  
   测试页面
  
  

这是一个带有特定类名的段落。

右侧列内容。

更多右侧内容。

可以看到,原始页面中的、带有class="m-b-0"的<p>标签以及带有id="right-col"的<div>标签及其所有子元素都被成功提取并组合到了新的HTML文件中。</p><h3>注意事项与进阶考量</h3><ol><li><p><strong>处理未找到的元素</strong>:soup.find()在找不到匹配元素时会返回None。在追加之前进行if found_element:检查是良好的编程习惯,可以避免将None对象添加到HTML树中,从而导致潜在的错误或不完整的输出。</p></li><li><p><strong>选择多个匹配项 (find_all)</strong>:如果需要提取所有符合条件的元素,而不是第一个匹配项,应使用soup.find_all()方法。find_all()会返回一个BeautifulSoup Tag对象的列表,你需要遍历这个列表,并将每个找到的元素逐一追加到新HTML文档中。</p><pre class="brush:php;toolbar:false"># 示例:提取所有 <p> 标签 all_paragraphs = soup.find_all('p') for p_tag in all_paragraphs: new_html.body.append(p_tag)</pre></li><li><p><strong>构建复杂新结构</strong>:本教程示例将所有元素追加到body标签下。如果需要构建更复杂的HTML结构(例如,将某些元素放入head,另一些放入body的特定div中),你需要创建更多的BeautifulSoup Tag对象,并使用append()、insert()等方法将元素放置到精确的位置。</p></li><li><p><strong>编码问题</strong>:在读取和写入文件时,务必注意文件编码。通常推荐使用utf-8。</p></li><li><p><strong>性能考量</strong>:对于非常大的HTML文件和大量的提取操作,BeautifulSoup的解析和操作可能会消耗较多内存和时间。在极端情况下,可以考虑其他更底层的HTML解析库,但对于大多数网页抓取和处理任务,BeautifulSoup的性能是完全足够的。</p></li></ol><h3>总结</h3><p>通过利用BeautifulSoup的内部机制,我们可以以一种声明式和结构化的方式从现有HTML文档中提取并重构新的HTML内容。这种方法不仅代码更简洁、更易于理解和维护,而且能够确保生成的HTML结构是有效的。掌握find()、find_all()和append()等核心方法,将大大提高你在Python中处理HTML文档的效率和健壮性。</p><p>今天关于《BeautifulSoup提取HTML生成新文档方法》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/358964.html" title="哔哩哔哩直播回放怎么查看" class="img_box"> <img src="/uploads/20251025/176135510968fc25650556c.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="哔哩哔哩直播回放怎么查看">哔哩哔哩直播回放怎么查看 </a> <dl> <dt class="lineOverflow"><a href="/article/358964.html" title="哔哩哔哩直播回放怎么查看" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">哔哩哔哩直播回放怎么查看</dd> </dl> </div> <div class="cateItem"> <a href="/article/358966.html" title="最长连续相同元素查找技巧" class="img_box"> <img src="/uploads/20251025/176135511168fc2567dfd95.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="最长连续相同元素查找技巧"> </a> <dl> <dt class="lineOverflow"><a href="/article/358966.html" class="aBlack" title="最长连续相同元素查找技巧">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">最长连续相同元素查找技巧</dd> </dl> </div> </div> </div> </div> <div class="leftContBox pt0"> <div class="pdl20"> <div class="contTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit">最新文章</div> </div> </div> <ul class="newArticleList"> <li> <div class="contBox"> <a href="/article/620120.html" class="img_box" title="Python CSV 导入流水线:从原始文件到可查询数据和错误行清理"> <img src="/uploads/20260701/1782871996-python-csv-error-retry.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python CSV 导入流水线:从原始文件到可查询数据和错误行清理"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  5天前  |   <a href="/articletag/1392_new_0_1.html" class="aLightGray" title="csv">csv</a> · <a href="/articletag/2337_new_0_1.html" class="aLightGray" title="python">python</a> · <a href="/articletag/3145_new_0_1.html" class="aLightGray" title="数据处理">数据处理</a> · <a href="/articletag/4861_new_0_1.html" class="aLightGray" title="sqlite3">sqlite3</a> · <a href="javascript:;" class="aLightGray" title="CSV导入">CSV导入</a> <a href="javascript:;" class="aLightGray" title="数据校验">数据校验</a> <a href="javascript:;" class="aLightGray" title="sqlite3">sqlite3</a> <a href="javascript:;" class="aLightGray" title="数据生命周期">数据生命周期</a> <a href="javascript:;" class="aLightGray" title="python教程">python教程</a> <a href="javascript:;" class="aLightGray" title="错误行">错误行</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620120.html" class="aBlack" target="_blank" title="Python CSV 导入流水线:从原始文件到可查询数据和错误行清理">Python CSV 导入流水线:从原始文件到可查询数据和错误行清理</a> </dt> <dd class="cont2"> <span><i class="view"></i>354浏览</span> <span class="collectBtn user_collection" data-id="620120" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620084.html" class="img_box" title="Python contextlib 资源清理配方:把 try/finally 收进上下文管理器"> <img src="/uploads/20260629/1782708516-python-contextlib-exitstack-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python contextlib 资源清理配方:把 try/finally 收进上下文管理器"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1星期前  |   <a href="/articletag/172_new_0_1.html" class="aLightGray" title="标准库">标准库</a> · <a href="/articletag/1678_new_0_1.html" class="aLightGray" title="资源管理">资源管理</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="/articletag/40032_new_0_1.html" class="aLightGray" title="上下文管理器">上下文管理器</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</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="contextlib">contextlib</a> <a href="javascript:;" class="aLightGray" title="ExitStack">ExitStack</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620084.html" class="aBlack" target="_blank" title="Python contextlib 资源清理配方:把 try/finally 收进上下文管理器">Python contextlib 资源清理配方:把 try/finally 收进上下文管理器</a> </dt> <dd class="cont2"> <span><i class="view"></i>429浏览</span> <span class="collectBtn user_collection" data-id="620084" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620077.html" class="img_box" title="Python sched 定时任务小实验:注册任务、轮询运行和失败重试"> <img src="/uploads/20260629/1782699574-python-sched-register-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python sched 定时任务小实验:注册任务、轮询运行和失败重试"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1星期前  |   <a href="/articletag/172_new_0_1.html" class="aLightGray" title="标准库">标准库</a> · <a href="/articletag/214_new_0_1.html" class="aLightGray" title="定时任务">定时任务</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="/articletag/39792_new_0_1.html" class="aLightGray" title="自动化脚本">自动化脚本</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</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="sched">sched</a> <a href="javascript:;" class="aLightGray" title="本地调度器">本地调度器</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620077.html" class="aBlack" target="_blank" title="Python sched 定时任务小实验:注册任务、轮询运行和失败重试">Python sched 定时任务小实验:注册任务、轮询运行和失败重试</a> </dt> <dd class="cont2"> <span><i class="view"></i>432浏览</span> <span class="collectBtn user_collection" data-id="620077" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620072.html" class="img_box" title="Python 读取大文件内存飙升复盘:从 read() 一次读入到分块迭代修复"> <img src="/uploads/20260627/1782575816-python-large-file-memory-timeline.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python 读取大文件内存飙升复盘:从 read() 一次读入到分块迭代修复"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1星期前  |   <a href="/articletag/16_new_0_1.html" class="aLightGray" title="文件处理">文件处理</a> · <a href="/articletag/39694_new_0_1.html" class="aLightGray" title="内存优化">内存优化</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="/articletag/40016_new_0_1.html" class="aLightGray" title="故障复盘">故障复盘</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="内存优化">内存优化</a> <a href="javascript:;" class="aLightGray" title="文件处理">文件处理</a> <a href="javascript:;" class="aLightGray" title="read">read</a> <a href="javascript:;" class="aLightGray" title="大文件读取">大文件读取</a> <a href="javascript:;" class="aLightGray" title="分块读取">分块读取</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620072.html" class="aBlack" target="_blank" title="Python 读取大文件内存飙升复盘:从 read() 一次读入到分块迭代修复">Python 读取大文件内存飙升复盘:从 read() 一次读入到分块迭代修复</a> </dt> <dd class="cont2"> <span><i class="view"></i>196浏览</span> <span class="collectBtn user_collection" data-id="620072" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620070.html" class="img_box" title="Python logging 日志重复打印排查:为什么一条记录输出了两遍"> <img src="/uploads/20260627/1782573431-python-logging-duplicate-trace.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python logging 日志重复打印排查:为什么一条记录输出了两遍"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1星期前  |   <a href="/articletag/5619_new_0_1.html" class="aLightGray" title="logging">logging</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="/articletag/39745_new_0_1.html" class="aLightGray" title="后端开发">后端开发</a> · <a href="/articletag/40012_new_0_1.html" class="aLightGray" title="日志排查">日志排查</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="logging">logging</a> <a href="javascript:;" class="aLightGray" title="日志重复">日志重复</a> <a href="javascript:;" class="aLightGray" title="propagate">propagate</a> <a href="javascript:;" class="aLightGray" title="addHandler">addHandler</a> <a href="javascript:;" class="aLightGray" title="basicConfig">basicConfig</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620070.html" class="aBlack" target="_blank" title="Python logging 日志重复打印排查:为什么一条记录输出了两遍">Python logging 日志重复打印排查:为什么一条记录输出了两遍</a> </dt> <dd class="cont2"> <span><i class="view"></i>324浏览</span> <span class="collectBtn user_collection" data-id="620070" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620068.html" class="img_box" title="Python 定时任务上云选型:从单机脚本到队列 Worker 的架构决策"> <img src="/uploads/20260627/1782570229-python-task-load-decision.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python 定时任务上云选型:从单机脚本到队列 Worker 的架构决策"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1星期前  |   <a href="/articletag/982_new_0_1.html" class="aLightGray" title="任务调度">任务调度</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="/articletag/39745_new_0_1.html" class="aLightGray" title="后端开发">后端开发</a> · <a href="/articletag/40010_new_0_1.html" class="aLightGray" title="云架构">云架构</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</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> <a href="javascript:;" class="aLightGray" title="Worker">Worker</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620068.html" class="aBlack" target="_blank" title="Python 定时任务上云选型:从单机脚本到队列 Worker 的架构决策">Python 定时任务上云选型:从单机脚本到队列 Worker 的架构决策</a> </dt> <dd class="cont2"> <span><i class="view"></i>435浏览</span> <span class="collectBtn user_collection" data-id="620068" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620057.html" class="img_box" title="Python requests 请求总是卡住?timeout、重试和错误处理配方"> <img src="/uploads/20260627/1782554260-python-requests-retry-wrapper.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python requests 请求总是卡住?timeout、重试和错误处理配方"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1星期前  |   <a href="/articletag/2337_new_0_1.html" class="aLightGray" title="python">python</a> · <a href="/articletag/14185_new_0_1.html" class="aLightGray" title="requests">requests</a> · <a href="/articletag/39789_new_0_1.html" class="aLightGray" title="接口调试">接口调试</a> · <a href="/articletag/40005_new_0_1.html" class="aLightGray" title="网络请求">网络请求</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="重试">重试</a> <a href="javascript:;" class="aLightGray" title="Requests">Requests</a> <a href="javascript:;" class="aLightGray" title="timeout">timeout</a> <a href="javascript:;" class="aLightGray" title="HTTP接口">HTTP接口</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620057.html" class="aBlack" target="_blank" title="Python requests 请求总是卡住?timeout、重试和错误处理配方">Python requests 请求总是卡住?timeout、重试和错误处理配方</a> </dt> <dd class="cont2"> <span><i class="view"></i>478浏览</span> <span class="collectBtn user_collection" data-id="620057" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620041.html" class="img_box" title="Python asyncio 超时后任务还在跑排查:从 wait_for 到取消清理"> <img src="/uploads/20260620/1781943945-python-asyncio-cancel-fix.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python asyncio 超时后任务还在跑排查:从 wait_for 到取消清理"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  2星期前  |   <a href="/articletag/5173_new_0_1.html" class="aLightGray" title="异步编程">异步编程</a> · <a href="/articletag/39699_new_0_1.html" class="aLightGray" title="后端工程">后端工程</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="/articletag/39720_new_0_1.html" class="aLightGray" title="asyncio">asyncio</a> · <a href="/articletag/39984_new_0_1.html" class="aLightGray" title="超时排查">超时排查</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="超时控制">超时控制</a> <a href="javascript:;" class="aLightGray" title="asyncio">asyncio</a> <a href="javascript:;" class="aLightGray" title="任务取消">任务取消</a> <a href="javascript:;" class="aLightGray" title="wait_for">wait_for</a> <a href="javascript:;" class="aLightGray" title="异步清理">异步清理</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620041.html" class="aBlack" target="_blank" title="Python asyncio 超时后任务还在跑排查:从 wait_for 到取消清理">Python asyncio 超时后任务还在跑排查:从 wait_for 到取消清理</a> </dt> <dd class="cont2"> <span><i class="view"></i>320浏览</span> <span class="collectBtn user_collection" data-id="620041" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620033.html" class="img_box" title="Python 配置加载工作流:从环境变量到 JSON 合并和启动前检查"> <img src="/uploads/20260618/1781758995-python-config-check-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python 配置加载工作流:从环境变量到 JSON 合并和启动前检查"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  2星期前  |   <a href="/articletag/307_new_0_1.html" class="aLightGray" title="JSON">JSON</a> · <a href="/articletag/377_new_0_1.html" class="aLightGray" title="配置管理">配置管理</a> · <a href="/articletag/1809_new_0_1.html" class="aLightGray" title="环境变量">环境变量</a> · <a href="/articletag/39699_new_0_1.html" class="aLightGray" title="后端工程">后端工程</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="环境变量">环境变量</a> <a href="javascript:;" class="aLightGray" title="JSON">JSON</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/620033.html" class="aBlack" target="_blank" title="Python 配置加载工作流:从环境变量到 JSON 合并和启动前检查">Python 配置加载工作流:从环境变量到 JSON 合并和启动前检查</a> </dt> <dd class="cont2"> <span><i class="view"></i>321浏览</span> <span class="collectBtn user_collection" data-id="620033" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620004.html" class="img_box" title="Python JSONL 大文件分批处理:从流式读取到失败样本报告"> <img src="/uploads/20260617/1781660378-python-jsonl-check.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python JSONL 大文件分批处理:从流式读取到失败样本报告"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  2星期前  |   <a href="/articletag/3145_new_0_1.html" class="aLightGray" title="数据处理">数据处理</a> · <a href="/articletag/11574_new_0_1.html" class="aLightGray" title="jsonl">jsonl</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</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="JSONL">JSONL</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620004.html" class="aBlack" target="_blank" title="Python JSONL 大文件分批处理:从流式读取到失败样本报告">Python JSONL 大文件分批处理:从流式读取到失败样本报告</a> </dt> <dd class="cont2"> <span><i class="view"></i>365浏览</span> <span class="collectBtn user_collection" data-id="620004" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620000.html" class="img_box" title="Python dataclass 默认值完整工作流:从可变默认值到 default_factory"> <img src="/uploads/20260616/1781600807-python-dataclass-checklist.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python dataclass 默认值完整工作流:从可变默认值到 default_factory"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  2星期前  |   <a href="/articletag/1974_new_0_1.html" class="aLightGray" title="默认值">默认值</a> · <a href="/articletag/2337_new_0_1.html" class="aLightGray" title="python">python</a> · <a href="/articletag/4829_new_0_1.html" class="aLightGray" title="数据建模">数据建模</a> · <a href="/articletag/39795_new_0_1.html" class="aLightGray" title="dataclass">dataclass</a> · <a href="/articletag/39936_new_0_1.html" class="aLightGray" title="default_factory">default_factory</a> · <a href="/articletag/39937_new_0_1.html" class="aLightGray" title="field">field</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="数据类">数据类</a> <a href="javascript:;" class="aLightGray" title="Field">Field</a> <a href="javascript:;" class="aLightGray" title="可变默认值">可变默认值</a> <a href="javascript:;" class="aLightGray" title="dataclass">dataclass</a> <a href="javascript:;" class="aLightGray" title="default_factory">default_factory</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620000.html" class="aBlack" target="_blank" title="Python dataclass 默认值完整工作流:从可变默认值到 default_factory">Python dataclass 默认值完整工作流:从可变默认值到 default_factory</a> </dt> <dd class="cont2"> <span><i class="view"></i>228浏览</span> <span class="collectBtn user_collection" data-id="620000" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619997.html" class="img_box" title="Python requests 请求一直卡住怎么办:timeout、状态码和重试一步步排查"> <img src="/uploads/20260616/1781597840-python-requests-retry-solution.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python requests 请求一直卡住怎么办:timeout、状态码和重试一步步排查"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  2星期前  |   <a href="/articletag/457_new_0_1.html" class="aLightGray" title="重试机制">重试机制</a> · <a href="/articletag/8485_new_0_1.html" class="aLightGray" title="timeout">timeout</a> · <a href="/articletag/14185_new_0_1.html" class="aLightGray" title="requests">requests</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="/articletag/39789_new_0_1.html" class="aLightGray" title="接口调试">接口调试</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="Http请求">Http请求</a> <a href="javascript:;" class="aLightGray" title="Requests">Requests</a> <a href="javascript:;" class="aLightGray" title="timeout">timeout</a> <a href="javascript:;" class="aLightGray" title="retry">retry</a> <a href="javascript:;" class="aLightGray" title="接口排查">接口排查</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619997.html" class="aBlack" target="_blank" title="Python requests 请求一直卡住怎么办:timeout、状态码和重试一步步排查">Python requests 请求一直卡住怎么办:timeout、状态码和重试一步步排查</a> </dt> <dd class="cont2"> <span><i class="view"></i>330浏览</span> <span class="collectBtn user_collection" data-id="619997" 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">4156次使用</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">3861次使用</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">3848次使用</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">4023次使用</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">3997次使用</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/616032.html" class="aBlack" title="Python监控网页状态:requests异常处理实战">Python监控网页状态:requests异常处理实战</a></dt> <dd> <span class="left">2026-05-29</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/612350.html" class="aBlack" title="TensorFlow模型部署为API的TF Serving方法">TensorFlow模型部署为API的TF Serving方法</a></dt> <dd> <span class="left">2026-05-26</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/602477.html" class="aBlack" title="Python字符串编码转换:encode与decode详解">Python字符串编码转换:encode与decode详解</a></dt> <dd> <span class="left">2026-05-16</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/602019.html" class="aBlack" title="TensorFlow裁剪无用算子方法详解">TensorFlow裁剪无用算子方法详解</a></dt> <dd> <span class="left">2026-05-15</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/588986.html" class="aBlack" title="httpx 如何设置代理认证(Proxy-Authorization)">httpx 如何设置代理认证(Proxy-Authorization)</a></dt> <dd> <span class="left">2026-05-05</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/358965.html"/> <input type="hidden" name="__token__" value="77082d3cd5eff7f52eecc6ddfdc06a32" /> <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/358965.html"/> <input type="hidden" name="__token__" value="77082d3cd5eff7f52eecc6ddfdc06a32" /> <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>