当前位置:首页 > 文章列表 > 文章 > python教程 > Dash自定义标题图标设置教程

Dash自定义标题图标设置教程

2025-12-14 20:27:38 0浏览 收藏

偷偷努力,悄无声息地变强,然后惊艳所有人!哈哈,小伙伴们又来学习啦~今天我将给大家介绍《Dash 自定义标题与图标设置方法》,这篇文章主要会讲到等等知识点,不知道大家对其都有多少了解,下面我们就一起来看一吧!当然,非常希望大家能多多评论,给出合理的建议,我们一起学习,一起进步!

Dash 应用中自定义 HTML 标题和页面图标

本教程详细介绍了如何在 Dash Python 应用中轻松更改浏览器选项卡标题和页面图标(favicon)。通过直接设置 `app.title` 属性来定义页面标题,以及使用 `app._favicon` 属性指定位于 `assets` 文件夹中的图标文件,开发者可以有效提升应用的用户体验和品牌识别度。

在构建 Dash Web 应用程序时,除了关注功能和布局,优化用户体验的细节同样重要。其中,自定义浏览器选项卡上显示的 HTML 标题和页面图标(favicon)是提升应用专业度和品牌识别度的关键步骤。Dash 提供了简洁直观的方式来实现这些定制。

1. 自定义浏览器选项卡标题

Dash 应用程序的浏览器选项卡标题可以通过设置 dash.Dash 实例的 title 属性来轻松更改。这是控制整个应用程序页面标题的标准方法。

实现方式:

在初始化 dash.Dash 对象后,直接为其 title 属性赋值即可。

示例代码:

import dash
from dash import html

# 初始化 Dash 应用
app = dash.Dash(__name__)

# 设置应用程序的浏览器选项卡标题
app.title = "我的 Dash 应用"

app.layout = html.Div(
    html.H1("欢迎来到我的 Dash 应用!")
)

if __name__ == '__main__':
    app.run_server(debug=True)

运行上述代码后,打开浏览器访问 Dash 应用时,您会发现浏览器选项卡上显示的是 "我的 Dash 应用",而不是默认的 "Dash"。

2. 自定义页面图标 (Favicon)

页面图标(favicon)是显示在浏览器选项卡、书签列表或搜索结果旁的小图标,它有助于用户快速识别您的应用。在 Dash 中,自定义 favicon 也非常直接。

实现方式:

通过设置 dash.Dash 实例的 _favicon 属性来指定图标文件。请务必将您的图标文件放置在应用程序根目录下的 assets 文件夹中。 Dash 会自动识别并服务 assets 文件夹中的静态文件。

示例代码:

假设您有一个名为 my_icon.png 的图标文件,并将其放置在项目根目录的 assets 文件夹内:

your_dash_app/
├── app.py
└── assets/
    └── my_icon.png

然后在 app.py 中:

import dash
from dash import html

app = dash.Dash(__name__)

# 设置页面图标,文件路径是相对于 assets 文件夹的
# 确保 'my_icon.png' 存在于项目的 'assets' 文件夹中
app._favicon = "my_icon.png"

app.layout = html.Div(
    html.H1("我的 Dash 应用,带有自定义图标!")
)

if __name__ == '__main__':
    app.run_server(debug=True)

支持的图标格式:

通常,_favicon 属性支持多种常见的图片格式,如 .png、.ico、.svg 等。其中 .ico 格式是专门用于 favicon 的传统格式,但 .png 也被广泛支持且易于制作。

3. 完整示例

将自定义标题和页面图标结合起来的完整 Dash 应用程序:

import dash
from dash import html

# 初始化 Dash 应用
app = dash.Dash(__name__)

# 设置应用程序的浏览器选项卡标题
app.title = "我的品牌应用"

# 设置页面图标,确保 'brand_icon.png' 存在于项目的 'assets' 文件夹中
app._favicon = "brand_icon.png"

app.layout = html.Div([
    html.H1("欢迎来到我的品牌 Dash 应用!"),
    html.P("这是一个带有自定义标题和图标的示例。")
])

if __name__ == '__main__':
    app.run_server(debug=True)

为了运行此示例,请确保您的项目结构如下:

your_brand_app/
├── app.py
└── assets/
    └── brand_icon.png  (请替换为您的实际图标文件)

4. 注意事项

  • assets 文件夹的重要性: Dash 会自动服务位于应用程序根目录下的 assets 文件夹中的所有静态文件(CSS、JavaScript、图片等)。因此,所有自定义图标文件都必须放置在此文件夹中,app._favicon 属性的值应为相对于 assets 文件夹的文件名。
  • app.title 与 html.Title 的区别: 许多开发者可能会尝试在 app.layout 中使用 html.Title 组件来设置页面标题。然而,app.title 属性是 Dash 应用程序层面控制浏览器选项卡标题的官方且推荐方式。将 html.Title 放入 app.layout 通常不会达到预期效果,因为它会成为应用内部 DOM 结构的一部分,而不是页面 标签中的 元素。</li><li><strong>浏览器缓存:</strong> 在更改 favicon 后,浏览器可能会缓存旧的图标。如果您在更新代码后没有立即看到新图标,请尝试清除浏览器缓存或进行硬刷新(通常是 Ctrl + F5 或 Shift + Cmd + R)。</li><li><strong>图标尺寸:</strong> 推荐为 favicon 准备不同尺寸的图标,例如 16x16、32x32、48x48 像素,以确保在不同设备和浏览器上的显示效果最佳。.ico 文件可以包含多个尺寸的图标。</li></ul><h3>总结</h3><p>通过简单地设置 app.title 和 app._favicon 属性,Dash 应用程序的开发者可以轻松地定制浏览器选项卡标题和页面图标。这不仅有助于提升应用的专业外观和用户体验,还能增强品牌识别度。记住将所有静态文件(包括图标)放置在 assets 文件夹中,并注意浏览器缓存问题,以确保更改能够正确显示。</p><p>今天关于《Dash自定义标题图标设置教程》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/420991.html" title="CSS冲突怎么解决?" class="img_box"> <img src="/uploads/20251214/1765715252693ead34a3ecd.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="CSS冲突怎么解决?">CSS冲突怎么解决? </a> <dl> <dt class="lineOverflow"><a href="/article/420991.html" title="CSS冲突怎么解决?" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">CSS冲突怎么解决?</dd> </dl> </div> <div class="cateItem"> <a href="/article/420993.html" title="HPU盘只读设置教程详解" class="img_box"> <img src="/uploads/20251214/1765715258693ead3a5a768.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="HPU盘只读设置教程详解"> </a> <dl> <dt class="lineOverflow"><a href="/article/420993.html" class="aBlack" title="HPU盘只读设置教程详解">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">HPU盘只读设置教程详解</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/622943.html" class="img_box" title="Python itertools.batched 的 strict=True 怎么避免尾批次漏数据:批处理边界与异常验收"> <img src="/uploads/20260828/1787864441-batched-default-tail.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python itertools.batched 的 strict=True 怎么避免尾批次漏数据:批处理边界与异常验收"> </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/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="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="批处理">批处理</a> <a href="javascript:;" class="aLightGray" title="ValueError">ValueError</a> <a href="javascript:;" class="aLightGray" title="itertools.batched">itertools.batched</a> <a href="javascript:;" class="aLightGray" title="strict=True">strict=True</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622943.html" class="aBlack" target="_blank" title="Python itertools.batched 的 strict=True 怎么避免尾批次漏数据:批处理边界与异常验收">Python itertools.batched 的 strict=True 怎么避免尾批次漏数据:批处理边界与异常验收</a> </dt> <dd class="cont2"> <span><i class="view"></i>133浏览</span> <span class="collectBtn user_collection" data-id="622943" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622916.html" class="img_box" title="Python sqlite3.Connection.blobopen 怎么分块读写 BLOB:事务边界与零拷贝缓冲区"> <img src="/uploads/20260828/1787860126-blob-reserve-write.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python sqlite3.Connection.blobopen 怎么分块读写 BLOB:事务边界与零拷贝缓冲区"> </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/575_new_0_1.html" class="aLightGray" title="文件读写">文件读写</a> · <a href="/articletag/667_new_0_1.html" class="aLightGray" title="数据库">数据库</a> · <a href="/articletag/4861_new_0_1.html" class="aLightGray" title="sqlite3">sqlite3</a> · <a href="/articletag/12589_new_0_1.html" class="aLightGray" title="Blob">Blob</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="blob">blob</a> <a href="javascript:;" class="aLightGray" title="sqlite3">sqlite3</a> <a href="javascript:;" class="aLightGray" title="blobopen">blobopen</a> <a href="javascript:;" class="aLightGray" title="zeroblob">zeroblob</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622916.html" class="aBlack" target="_blank" title="Python sqlite3.Connection.blobopen 怎么分块读写 BLOB:事务边界与零拷贝缓冲区">Python sqlite3.Connection.blobopen 怎么分块读写 BLOB:事务边界与零拷贝缓冲区</a> </dt> <dd class="cont2"> <span><i class="view"></i>366浏览</span> <span class="collectBtn user_collection" data-id="622916" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622883.html" class="img_box" title="Python decimal.quantize 如何固定金额小数位:舍入模式与异常边界"> <img src="/uploads/20260828/1787855802-python-decimal-input-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python decimal.quantize 如何固定金额小数位:舍入模式与异常边界"> </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>   |  3小时前  |   <a href="/articletag/852_new_0_1.html" class="aLightGray" title="数据校验">数据校验</a> · <a href="/articletag/3796_new_0_1.html" class="aLightGray" title="decimal">decimal</a> · <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> · <a href="/articletag/39786_new_0_1.html" class="aLightGray" title="金额计算">金额计算</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="decimal">decimal</a> <a href="javascript:;" class="aLightGray" title="quantize">quantize</a> <a href="javascript:;" class="aLightGray" title="ROUND_HALF_UP">ROUND_HALF_UP</a> <a href="javascript:;" class="aLightGray" title="金额精度">金额精度</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622883.html" class="aBlack" target="_blank" title="Python decimal.quantize 如何固定金额小数位:舍入模式与异常边界">Python decimal.quantize 如何固定金额小数位:舍入模式与异常边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>196浏览</span> <span class="collectBtn user_collection" data-id="622883" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622852.html" class="img_box" title="Python logging.QueueHandler 如何安全收集多进程日志:队列关闭与丢失排查"> <img src="/uploads/20260828/1787851656-queue-close-state.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python logging.QueueHandler 如何安全收集多进程日志:队列关闭与丢失排查"> </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>   |  4小时前  |   <a href="/articletag/51_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/40327_new_0_1.html" class="aLightGray" title="多进程">多进程</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="QueueListener">QueueListener</a> <a href="javascript:;" class="aLightGray" title="multiprocessing.Queue">multiprocessing.Queue</a> <a href="javascript:;" class="aLightGray" title="logging.QueueHandler">logging.QueueHandler</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622852.html" class="aBlack" target="_blank" title="Python logging.QueueHandler 如何安全收集多进程日志:队列关闭与丢失排查">Python logging.QueueHandler 如何安全收集多进程日志:队列关闭与丢失排查</a> </dt> <dd class="cont2"> <span><i class="view"></i>474浏览</span> <span class="collectBtn user_collection" data-id="622852" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622826.html" class="img_box" title="Python pathlib.Path.relative_to 的 walk_up 边界:如何判断路径是否真的在目录内"> <img src="/uploads/20260828/1787847484-relative-to-boundary.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python pathlib.Path.relative_to 的 walk_up 边界:如何判断路径是否真的在目录内"> </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>   |  6小时前  |   <a href="/articletag/172_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/39791_new_0_1.html" class="aLightGray" title="pathlib">pathlib</a> · <a href="/articletag/40164_new_0_1.html" class="aLightGray" title="安全校验">安全校验</a> · <a href="/articletag/41304_new_0_1.html" class="aLightGray" title="文件路径">文件路径</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="pathlib">pathlib</a> <a href="javascript:;" class="aLightGray" title="路径校验">路径校验</a> <a href="javascript:;" class="aLightGray" title="Path.relative_to">Path.relative_to</a> <a href="javascript:;" class="aLightGray" title="walk_up">walk_up</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622826.html" class="aBlack" target="_blank" title="Python pathlib.Path.relative_to 的 walk_up 边界:如何判断路径是否真的在目录内">Python pathlib.Path.relative_to 的 walk_up 边界:如何判断路径是否真的在目录内</a> </dt> <dd class="cont2"> <span><i class="view"></i>382浏览</span> <span class="collectBtn user_collection" data-id="622826" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622806.html" class="img_box" title="Python inspect.Signature.bind 如何提前校验关键字参数:参数绑定与错误定位"> <img src="/uploads/20260827/1787843077-bind-validation-branches.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python inspect.Signature.bind 如何提前校验关键字参数:参数绑定与错误定位"> </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>   |  7小时前  |   <a href="/articletag/807_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/20173_new_0_1.html" class="aLightGray" title="inspect">inspect</a> · <a href="/articletag/40586_new_0_1.html" class="aLightGray" title="函数调用">函数调用</a> · <a href="/articletag/41266_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="inspect.Signature.bind">inspect.Signature.bind</a> <a href="javascript:;" class="aLightGray" title="BoundArguments">BoundArguments</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622806.html" class="aBlack" target="_blank" title="Python inspect.Signature.bind 如何提前校验关键字参数:参数绑定与错误定位">Python inspect.Signature.bind 如何提前校验关键字参数:参数绑定与错误定位</a> </dt> <dd class="cont2"> <span><i class="view"></i>393浏览</span> <span class="collectBtn user_collection" data-id="622806" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622780.html" class="img_box" title="Python 3.14 os.reload_environ 怎么刷新环境变量:缓存、并发与启动配置边界"> <img src="/uploads/20260827/1787838792-python-environ-refresh-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python 3.14 os.reload_environ 怎么刷新环境变量:缓存、并发与启动配置边界"> </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>   |  8小时前  |   <a href="/articletag/19_new_0_1.html" class="aLightGray" title="并发">并发</a> · <a href="/articletag/172_new_0_1.html" class="aLightGray" title="标准库">标准库</a> · <a href="/articletag/377_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/39952_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="os.environ">os.environ</a> <a href="javascript:;" class="aLightGray" title="Python 3.14">Python 3.14</a> <a href="javascript:;" class="aLightGray" title="os.reload_environ">os.reload_environ</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622780.html" class="aBlack" target="_blank" title="Python 3.14 os.reload_environ 怎么刷新环境变量:缓存、并发与启动配置边界">Python 3.14 os.reload_environ 怎么刷新环境变量:缓存、并发与启动配置边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>428浏览</span> <span class="collectBtn user_collection" data-id="622780" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622761.html" class="img_box" title="Python csv.DictReader 遇到多余列怎么办:restkey、缺失列与行级校验"> <img src="/uploads/20260827/1787834350-dictreader-branch.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python csv.DictReader 遇到多余列怎么办:restkey、缺失列与行级校验"> </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>   |  9小时前  |   <a href="/articletag/852_new_0_1.html" class="aLightGray" title="数据校验">数据校验</a> · <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="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="csv">csv</a> <a href="javascript:;" class="aLightGray" title="DictReader">DictReader</a> <a href="javascript:;" class="aLightGray" title="restkey">restkey</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622761.html" class="aBlack" target="_blank" title="Python csv.DictReader 遇到多余列怎么办:restkey、缺失列与行级校验">Python csv.DictReader 遇到多余列怎么办:restkey、缺失列与行级校验</a> </dt> <dd class="cont2"> <span><i class="view"></i>215浏览</span> <span class="collectBtn user_collection" data-id="622761" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622741.html" class="img_box" title="Python contextlib.AsyncExitStack 如何保证异步资源逆序释放:部分初始化失败的回滚边界"> <img src="/uploads/20260827/1787830280-asyncexitstack-failure-recovery.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python contextlib.AsyncExitStack 如何保证异步资源逆序释放:部分初始化失败的回滚边界"> </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>   |  10小时前  |   <a href="/articletag/1031_new_0_1.html" class="aLightGray" title="异常处理">异常处理</a> · <a href="/articletag/1678_new_0_1.html" class="aLightGray" title="资源管理">资源管理</a> · <a href="/articletag/5173_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/41267_new_0_1.html" class="aLightGray" title="AsyncExitStack">AsyncExitStack</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="回滚">回滚</a> <a href="javascript:;" class="aLightGray" title="aclose">aclose</a> <a href="javascript:;" class="aLightGray" title="contextlib.AsyncExitStack">contextlib.AsyncExitStack</a> <a href="javascript:;" class="aLightGray" title="异步资源">异步资源</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622741.html" class="aBlack" target="_blank" title="Python contextlib.AsyncExitStack 如何保证异步资源逆序释放:部分初始化失败的回滚边界">Python contextlib.AsyncExitStack 如何保证异步资源逆序释放:部分初始化失败的回滚边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>352浏览</span> <span class="collectBtn user_collection" data-id="622741" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622720.html" class="img_box" title="Python sqlite3.Connection.autocommit 怎么区分事务模式:提交时机与迁移检查"> <img src="/uploads/20260827/1787826275-sqlite-autocommit-modes.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python sqlite3.Connection.autocommit 怎么区分事务模式:提交时机与迁移检查"> </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>   |  11小时前  |   <a href="/articletag/3981_new_0_1.html" class="aLightGray" title="SQLite">SQLite</a> · <a href="/articletag/5018_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/41257_new_0_1.html" class="aLightGray" title="事务控制">事务控制</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="SQLite">SQLite</a> <a href="javascript:;" class="aLightGray" title="事务">事务</a> <a href="javascript:;" class="aLightGray" title="sqlite3">sqlite3</a> <a href="javascript:;" class="aLightGray" title="Connection.autocommit">Connection.autocommit</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622720.html" class="aBlack" target="_blank" title="Python sqlite3.Connection.autocommit 怎么区分事务模式:提交时机与迁移检查">Python sqlite3.Connection.autocommit 怎么区分事务模式:提交时机与迁移检查</a> </dt> <dd class="cont2"> <span><i class="view"></i>221浏览</span> <span class="collectBtn user_collection" data-id="622720" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622692.html" class="img_box" title="Python pathlib.Path.rglob 如何排除隐藏目录:递归扫描与过滤边界"> <img src="/uploads/20260827/1787817180-python-rglob-filter-decision.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python pathlib.Path.rglob 如何排除隐藏目录:递归扫描与过滤边界"> </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>   |  14小时前  |   <a href="/articletag/2337_new_0_1.html" class="aLightGray" title="python">python</a> · <a href="/articletag/39791_new_0_1.html" class="aLightGray" title="pathlib">pathlib</a> · <a href="/articletag/41247_new_0_1.html" class="aLightGray" title="文件扫描">文件扫描</a> · <a href="javascript:;" class="aLightGray" title="Python">Python</a> <a href="javascript:;" class="aLightGray" title="pathlib">pathlib</a> <a href="javascript:;" class="aLightGray" title="Path.rglob">Path.rglob</a> <a href="javascript:;" class="aLightGray" title="隐藏目录">隐藏目录</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622692.html" class="aBlack" target="_blank" title="Python pathlib.Path.rglob 如何排除隐藏目录:递归扫描与过滤边界">Python pathlib.Path.rglob 如何排除隐藏目录:递归扫描与过滤边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>181浏览</span> <span class="collectBtn user_collection" data-id="622692" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622670.html" class="img_box" title="Python contextlib.ExitStack 怎么管理动态资源:批量打开与异常回收"> <img src="/uploads/20260827/1787812899-exitstack-exception-cleanup.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python contextlib.ExitStack 怎么管理动态资源:批量打开与异常回收"> </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>   |  15小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/622670.html" class="aBlack" target="_blank" title="Python contextlib.ExitStack 怎么管理动态资源:批量打开与异常回收">Python contextlib.ExitStack 怎么管理动态资源:批量打开与异常回收</a> </dt> <dd class="cont2"> <span><i class="view"></i>441浏览</span> <span class="collectBtn user_collection" data-id="622670" 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">5351次使用</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">4857次使用</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">4809次使用</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">5056次使用</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">5017次使用</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/622385.html" class="aBlack" title="Python sqlite3 Connection serialize 怎么导出数据库快照:备份窗口、内存占用与恢复校验">Python sqlite3 Connection serialize 怎么导出数据库快照:备份窗口、内存占用与恢复校验</a></dt> <dd> <span class="left">2026-08-26</span> <span class="right">501浏览</span> </dd> </dl> </li> <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> </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备19018815号-4</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/420992.html"/> <input type="hidden" name="__token__" value="8fa28a56befc433bd550ddce2aa73fe3" /> <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/420992.html"/> <input type="hidden" name="__token__" value="8fa28a56befc433bd550ddce2aa73fe3" /> <div class="form-group" style="height:70px;"> <input type="text" name="email" id="email2" data-rule="required;email" class="form-control" placeholder="邮箱"> </div> <div class="form-group" style="height:70px;"> <input type="text" id="username" name="username" data-rule="required;username" class="form-control" placeholder="用户名必须3-30个字符"> </div> <div class="form-group" style="height:70px;"> <input type="password" id="password2" name="password" data-rule="required;password" class="form-control" placeholder="密码必须6-30个字符"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="loginBtn"> <button type="submit">注册</button> </div> </form> </div> </div> </div> <div class="beforeLoginTip">登录即同意 <a href="https://www.17golang.com/about/3.html" target="_blank" class="aBlue" title="用户协议">用户协议</a> 和 <a href="https://www.17golang.com/about/4.html" target="_blank" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 重置密码 --> <div class="loginInfo passwordForget"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="returnLogin cursorPointer" onclick="$('.passwordForget').hide();$('.passwordLogin').show();">返回登录</div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem">重置密码</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont"> <form id="resetpwd-form" class="form-horizontal form-layer nice-validator n-default n-bootstrap form" method="POST" action="/api/user/resetpwd.html" novalidate="novalidate"> <div style="height:70px;"> <input type="text" class="form-control" id="email" name="email" value="" placeholder="输入邮箱" aria-invalid="true"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <a href="javascript:;" class="btn btn-primary btn-captcha cursorPointer" style="background: #2080F8; border-radius: 4px; color: #fff; padding: 12px; position: absolute;" data-url="/api/ems/send.html" data-type="email" data-event="resetpwd">发送验证码</a> </span> </div> <input type="password" class="form-control" id="newpassword" name="newpassword" value="" placeholder="请输入6-18位密码"> <div class="loginBtn mt25"> <button type="submit">重置密码</button> </div> </form> </div> </div> </div> </div> </div> </div> <script src="/assets/js/juejin-theme.js?v=20260613b" defer></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e34c3e8ab31ba35d7e1c48ea8d77315f"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/frontend/common.js"></script> </body> </html>