当前位置:首页 > 文章列表 > 文章 > python教程 > Djangoreverse()匹配URL问题解析

Djangoreverse()匹配URL问题解析

2025-07-23 16:18:33 0浏览 收藏

本文深入解析Django框架中`reverse()`函数在URL匹配时可能遇到的问题。当使用`reverse()`根据名称生成URL时,有时会意外匹配到其他URL模式,导致重定向循环等问题。文章通过一个类似维基百科的实际案例,详细分析了当访问不存在页面时,`reverse("notfound")`为何会陷入无限重定向的原因,揭示了URL模式匹配顺序的重要性。针对这一问题,本文提供了三种解决方案:调整URL模式顺序、修改URL模式,以及使用正则表达式进行更精确的匹配。旨在帮助开发者理解Django URL匹配机制,避免类似错误,编写更健壮的Web应用。掌握这些技巧,能有效提升Django项目的稳定性和用户体验。

Django reverse() 匹配 URL 模式而非名称问题详解

本文将深入探讨 Django 中 reverse() 函数在 URL 匹配过程中可能出现的“陷阱”,并解释其背后的原因。通常情况下,我们期望 reverse() 函数通过指定的名称找到对应的 URL,但有时它似乎会匹配到其他的 URL 模式,导致意想不到的结果,例如重定向循环。下面,我们将通过一个实际的例子来分析这个问题,并提供解决方案。

问题描述

假设我们正在开发一个类似维基百科的 Django 项目。当用户访问一个不存在的页面(例如 /wiki/file)时,我们希望将其重定向到一个 "not found" 页面。然而,使用 reverse("notfound") 进行重定向时,却发现用户被无限循环地重定向回原来的页面,而不是 "not found" 页面。

代码示例

以下是相关的 urls.py 和 views.py 代码:

urls.py:

from django.urls import path
from . import views

urlpatterns = [
    path("", views.index, name="index"),
    path("wiki/", views.entry, name="entry"),
    path("wiki/notfound", views.notfound, name="notfound"),
]

views.py:

from django.shortcuts import render
import markdown2
from django.urls import reverse
from django.http import HttpResponseRedirect

from . import util


def index(request):
    return render(request, "encyclopedia/index.html", {
        "entries": util.list_entries()
    })

def entry(request, title):
    md = util.get_entry(title)

    if md is None:
        return HttpResponseRedirect(reverse("notfound"))
    else:
        html = markdown2.markdown(md)

    return render(request, "encyclopedia/entry.html", {
        "title": title,
        "entry": html
    })

def notfound(request):
    return render(request, "encyclopedia/notfound.html")

问题分析

问题的关键在于 URL 模式的匹配顺序和 reverse() 函数的工作方式。reverse("notfound") 会返回 /wiki/notfound。当用户被重定向到这个 URL 时,Django 的 URL 解析器会尝试匹配 urlpatterns 中的模式。

由于 path("wiki/", views.entry, name="entry") 定义的模式具有更高的优先级(因为它更早出现,并且可以匹配任何以 /wiki/ 开头的字符串),所以 /wiki/notfound 首先被这个模式匹配到。因此,entry 视图被调用,由于 notfound 并不是一个有效的页面,entry 视图又会将用户重定向到 /wiki/notfound,从而形成无限循环。

本质原因: reverse() 函数本身没有问题,它正确地根据名称找到了对应的 URL。问题在于该 URL 被其他更通用的 URL 模式优先匹配。

解决方案

有几种方法可以解决这个问题:

  1. 调整 URL 模式的顺序: 将 path("wiki/notfound", views.notfound, name="notfound") 放在 path("wiki/", views.entry, name="entry") 之前。这样,/wiki/notfound 会首先被 notfound 视图匹配。

    urlpatterns = [
        path("", views.index, name="index"),
        path("wiki/notfound", views.notfound, name="notfound"), # 调整顺序
        path("wiki/", views.entry, name="entry"),
    ]
  2. 修改 URL 模式: 在 entry 视图的 URL 模式中添加一个结束符,使其不能匹配 /wiki/notfound。例如,可以修改为 path("wiki//", views.entry, name="entry")。注意,这需要在 URL 中显式地添加斜杠。

    urlpatterns = [
        path("", views.index, name="index"),
        path("wiki//", views.entry, name="entry"), # 添加结束符
        path("wiki/notfound", views.notfound, name="notfound"),
    ]
  3. 使用更精确的URL匹配: 可以考虑使用正则表达式进行更精确的URL匹配,确保/wiki/notfound 不会被 entry 视图匹配。

    from django.urls import re_path
    
    urlpatterns = [
        path("", views.index, name="index"),
        re_path(r"^wiki/(?P[^/]+)$", views.entry, name="entry"), # 使用正则表达式
        path("wiki/notfound", views.notfound, name="notfound"),
    ]</pre></li></ol><h3>总结</h3><p>在使用 Django 的 reverse() 函数进行 URL 重定向时,需要特别注意 URL 模式的匹配顺序和通用性。如果一个 URL 模式过于通用,可能会覆盖其他更具体的 URL 模式,导致重定向逻辑出现问题。通过调整 URL 模式的顺序、添加结束符或使用更精确的正则表达式,可以避免此类问题的发生。理解 URL 模式的匹配机制是编写健壮的 Django 应用的关键。</p><p>今天带大家了解了的相关知识,希望对你有所帮助;关于文章的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~</p>                </div>
                    <div class="labsList">
                                        </div>
                                    <div class="cateBox">
                                            <div class="cateItem">
                            <a href="/article/263990.html" title="SpringBoot整合RocketMQ事务消息全解析" class="img_box">
                                <img src="/uploads/20250723/175325871168809ad7e5ca4.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="SpringBoot整合RocketMQ事务消息全解析">SpringBoot整合RocketMQ事务消息全解析                        </a>
                            <dl>
                                <dt class="lineOverflow"><a href="/article/263990.html"  title="SpringBoot整合RocketMQ事务消息全解析" class="aBlack">上一篇<i></i></a></dt>
                                <dd class="lineTwoOverflow">SpringBoot整合RocketMQ事务消息全解析</dd>
                            </dl>
                        </div>
                                            <div class="cateItem">
                            <a href="/article/263992.html"  title="CSS变量动态调色方案解析" class="img_box">
                                <img src="/uploads/20250723/175325874668809afa4c92e.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="CSS变量动态调色方案解析">
                            </a>
                            <dl>
                                <dt class="lineOverflow"><a href="/article/263992.html"  class="aBlack" title="CSS变量动态调色方案解析">下一篇<i></i></a></dt>
                                <dd class="lineTwoOverflow">CSS变量动态调色方案解析</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/621018.html" class="img_box" title="Python eager_task_factory 迁移验收:同步完成、阻塞回环与异常时机">
                                <img src="/uploads/20260816/1786882185-eager-cache-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python eager_task_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>
                                                           |  17分钟前  |  
    
                                                      </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/621018.html" class="aBlack" target="_blank" title="Python eager_task_factory 迁移验收:同步完成、阻塞回环与异常时机">Python eager_task_factory 迁移验收:同步完成、阻塞回环与异常时机</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>103浏览</span>
                                    <span class="collectBtn user_collection" data-id="621018" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/621017.html" class="img_box" title="Python asyncio.eager_task_factory 怎么用:缓存命中提速与任务顺序回归检查">
                                <img src="/uploads/20260816/1786882094-eager-cache-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python asyncio.eager_task_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>
                                                           |  18分钟前  |  
    
                                                      </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/621017.html" class="aBlack" target="_blank" title="Python asyncio.eager_task_factory 怎么用:缓存命中提速与任务顺序回归检查">Python asyncio.eager_task_factory 怎么用:缓存命中提速与任务顺序回归检查</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>306浏览</span>
                                    <span class="collectBtn user_collection" data-id="621017" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/621007.html" class="img_box" title="Python 3.14 Zstandard 流式日志怎么落地:compression.zstd 的帧边界与兼容门禁">
                                <img src="/uploads/20260816/1786877701-compression-zstd-roundtrip.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python 3.14 Zstandard 流式日志怎么落地:compression.zstd 的帧边界与兼容门禁">
                            </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小时前  |  
    
                                                      </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/621007.html" class="aBlack" target="_blank" title="Python 3.14 Zstandard 流式日志怎么落地:compression.zstd 的帧边界与兼容门禁">Python 3.14 Zstandard 流式日志怎么落地:compression.zstd 的帧边界与兼容门禁</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>367浏览</span>
                                    <span class="collectBtn user_collection" data-id="621007" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/621006.html" class="img_box" title="Python 3.14 compression.zstd 怎么用:批量归档、流式压缩与兼容检查">
                                <img src="/uploads/20260816/1786877426-compression-zstd-roundtrip.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python 3.14 compression.zstd 怎么用:批量归档、流式压缩与兼容检查">
                            </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小时前  |  
    
                                                      </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/621006.html" class="aBlack" target="_blank" title="Python 3.14 compression.zstd 怎么用:批量归档、流式压缩与兼容检查">Python 3.14 compression.zstd 怎么用:批量归档、流式压缩与兼容检查</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>363浏览</span>
                                    <span class="collectBtn user_collection" data-id="621006" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/620689.html" class="img_box" title="Python pathlib.Path.walk 怎么做目录清理:剪枝、错误回调与版本边界">
                                <img src="/uploads/20260810/1786334946-path-walk-audit.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python pathlib.Path.walk 怎么做目录清理:剪枝、错误回调与版本边界">
                            </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天前  |  
    
                                                      </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/620689.html" class="aBlack" target="_blank" title="Python pathlib.Path.walk 怎么做目录清理:剪枝、错误回调与版本边界">Python pathlib.Path.walk 怎么做目录清理:剪枝、错误回调与版本边界</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>135浏览</span>
                                    <span class="collectBtn user_collection" data-id="620689" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/620645.html" class="img_box" title="Python typing.Protocol 运行时检查为什么不等于接口完整性:runtime_checkable、属性访问与静态类型边界">
                                <img src="/uploads/20260809/1786213659-protocol-contract-boundary.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python typing.Protocol 运行时检查为什么不等于接口完整性:runtime_checkable、属性访问与静态类型边界">
                            </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/20713_new_0_1.html" class="aLightGray" title="protocol">protocol</a> ·
                                                                              <a href="/articletag/39719_new_0_1.html" class="aLightGray" title="Python教程">Python教程</a> ·
                                                                              <a href="/articletag/39880_new_0_1.html" class="aLightGray" title="运行时">运行时</a> ·
                                                                              <a href="/articletag/40502_new_0_1.html" class="aLightGray" title="typing">typing</a> ·
                                                                              <a href="/articletag/40503_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="typing.Protocol">typing.Protocol</a>
                                                                                                 <a href="javascript:;" class="aLightGray" title="runtime_checkable">runtime_checkable</a>
                                                                                                 <a href="javascript:;" class="aLightGray" title="结构化类型">结构化类型</a>
                                                                                                 <a href="javascript:;" class="aLightGray" title="isinstance">isinstance</a>
                                                                  </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/620645.html" class="aBlack" target="_blank" title="Python typing.Protocol 运行时检查为什么不等于接口完整性:runtime_checkable、属性访问与静态类型边界">Python typing.Protocol 运行时检查为什么不等于接口完整性:runtime_checkable、属性访问与静态类型边界</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>295浏览</span>
                                    <span class="collectBtn user_collection" data-id="620645" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/620638.html" class="img_box" title="Python asyncio.to_thread 不是并发加速:线程池边界、取消语义与阻塞函数验证">
                                <img src="/uploads/20260809/1786209207-python-to-thread-before-after.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python asyncio.to_thread 不是并发加速:线程池边界、取消语义与阻塞函数验证">
                            </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/861_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/5173_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="to_thread">to_thread</a>
                                                                  </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/620638.html" class="aBlack" target="_blank" title="Python asyncio.to_thread 不是并发加速:线程池边界、取消语义与阻塞函数验证">Python asyncio.to_thread 不是并发加速:线程池边界、取消语义与阻塞函数验证</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>291浏览</span>
                                    <span class="collectBtn user_collection" data-id="620638" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/620623.html" class="img_box" title="Python lru_cache 缓存了旧配置怎么办:清理时机、缓存键与验证边界">
                                <img src="/uploads/20260728/1785204123-lru-cache-old-value.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python lru_cache 缓存了旧配置怎么办:清理时机、缓存键与验证边界">
                            </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/19_new_0_1.html" class="aLightGray" title="并发">并发</a> ·
                                                                              <a href="/articletag/322_new_0_1.html" class="aLightGray" title="缓存">缓存</a> ·
                                                                              <a href="/articletag/377_new_0_1.html" class="aLightGray" title="配置管理">配置管理</a> ·
                                                                              <a href="/articletag/861_new_0_1.html" class="aLightGray" title="性能">性能</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="缓存">缓存</a>
                                                                                                 <a href="javascript:;" class="aLightGray" title="缓存清理">缓存清理</a>
                                                                                                 <a href="javascript:;" class="aLightGray" title="functools">functools</a>
                                                                                                 <a href="javascript:;" class="aLightGray" title="lru_cache">lru_cache</a>
                                                                                                 <a href="javascript:;" class="aLightGray" title="配置刷新">配置刷新</a>
                                                                  </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/620623.html" class="aBlack" target="_blank" title="Python lru_cache 缓存了旧配置怎么办:清理时机、缓存键与验证边界">Python lru_cache 缓存了旧配置怎么办:清理时机、缓存键与验证边界</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>339浏览</span>
                                    <span class="collectBtn user_collection" data-id="620623" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/620622.html" class="img_box" title="Python asyncio.wait_for 超时后任务为什么还在跑:取消、shield 与资源回收">
                                <img src="/uploads/20260728/1785203589-asyncio-resource-cleanup.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python asyncio.wait_for 超时后任务为什么还在跑:取消、shield 与资源回收">
                            </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/19_new_0_1.html" class="aLightGray" title="并发">并发</a> ·
                                                                              <a href="/articletag/898_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/39720_new_0_1.html" class="aLightGray" title="asyncio">asyncio</a> ·
                                                                              <a href="/articletag/40498_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="取消任务">取消任务</a>
                                                                                                 <a href="javascript:;" class="aLightGray" title="wait_for">wait_for</a>
                                                                  </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/620622.html" class="aBlack" target="_blank" title="Python asyncio.wait_for 超时后任务为什么还在跑:取消、shield 与资源回收">Python asyncio.wait_for 超时后任务为什么还在跑:取消、shield 与资源回收</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>158浏览</span>
                                    <span class="collectBtn user_collection" data-id="620622" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/620616.html" class="img_box" title="Python Decimal 金额为什么多出 0.01:quantize、ROUND_HALF_UP 与浮点输入排查">
                                <img src="/uploads/20260727/1785141089-python-decimal-float-chain.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python Decimal 金额为什么多出 0.01:quantize、ROUND_HALF_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>
                                                           |  2星期前  |  
    
                                                                            <a href="/articletag/1928_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/3796_new_0_1.html" class="aLightGray" title="decimal">decimal</a> ·
                                                                              <a href="/articletag/40494_new_0_1.html" class="aLightGray" title="数据精度">数据精度</a> ·
                                                                                       <a href="javascript:;" class="aLightGray" title="Python Decimal">Python 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/620616.html" class="aBlack" target="_blank" title="Python Decimal 金额为什么多出 0.01:quantize、ROUND_HALF_UP 与浮点输入排查">Python Decimal 金额为什么多出 0.01:quantize、ROUND_HALF_UP 与浮点输入排查</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>374浏览</span>
                                    <span class="collectBtn user_collection" data-id="620616" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/620550.html" class="img_box" title="Python multiprocessing.Pool 停机后进程仍不退:close、terminate、join 顺序排查">
                                <img src="/uploads/20260726/1785037416-pool-shutdown-order.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python multiprocessing.Pool 停机后进程仍不退:close、terminate、join 顺序排查">
                            </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星期前  |  
    
                                                      </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/620550.html" class="aBlack" target="_blank" title="Python multiprocessing.Pool 停机后进程仍不退:close、terminate、join 顺序排查">Python multiprocessing.Pool 停机后进程仍不退:close、terminate、join 顺序排查</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>133浏览</span>
                                    <span class="collectBtn user_collection" data-id="620550" data-type="article" title="收藏"><i class="collect"></i>收藏</span>
                                </dd>
                            </dl>
                        </div>
                    </li>
                                    <li>
                        <div class="contBox">
                            <a href="/article/620549.html" class="img_box" title="Python logging.QueueHandler 怎么避免业务线程被慢日志拖住:队列、监听器与停机收尾">
                                <img src="/uploads/20260726/1785036741-queue-handler-path.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>
                                                           |  3星期前  |  
    
                                                      </span>
                                </dd>
                                <dt class="lineOverflow">
                                    <a href="/article/620549.html" class="aBlack" target="_blank" title="Python logging.QueueHandler 怎么避免业务线程被慢日志拖住:队列、监听器与停机收尾">Python logging.QueueHandler 怎么避免业务线程被慢日志拖住:队列、监听器与停机收尾</a>
                                </dt>
                                <dd class="cont2">
                                    <span><i class="view"></i>322浏览</span>
                                    <span class="collectBtn user_collection" data-id="620549" 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">4896次使用</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">4474次使用</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">4417次使用</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">4654次使用</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">4612次使用</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备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/263991.html"/>
                    <input type="hidden" name="__token__" value="2e77cc2a2fbdc323ea70ff1e24d584c5" />                <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/263991.html"/>
                    <input type="hidden" name="__token__" value="2e77cc2a2fbdc323ea70ff1e24d584c5" />                <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>