当前位置:首页>python>从基础到 AI 助手:Python 用户最爱的 VScode 插件清单

从基础到 AI 助手:Python 用户最爱的 VScode 插件清单

  • 2026-03-26 05:21:02
从基础到 AI 助手:Python 用户最爱的 VScode 插件清单

👇 连享会 · 推文导航 | www.lianxh.cn

连享会:2026五一论文班 · 线上
时间:5月2-4日
嘉宾:郭士祺 (上海交通大学)、戚树森 (厦门大学)、李学恒 (中山大学)
咨询:王老师 18903405450(微信)

 本次课程框架为:因果证据链的构建 → 在顶刊论文中感受和校准这套因果证据链判断 → AI Agent 辅助实现完成

  • 从「会跑回归」到「会做研究设计」。 从 RCT 出发,覆盖 DID、固定效应、工具变量的识别逻辑与论证策略,重点不在方法本身,而在于如何围绕一个研究问题构建完整的因果证据链——这是 AI 替代不了、也最值得花时间打磨的核心能力。

  • 顶刊论文,原作者精讲。 戚树森老师亲自讲解自己参与完成的 Review of Finance 论文,覆盖选题缘起、识别策略设计、审稿意见的回应过程——不只是呈现结果,而是还原论文背后真实的决策过程。

  • 用 AI Agent 真正解放执行环节。 学完这门课,你将掌握两套可以直接上手的 AI Agent 工作流——文献综述和论文修改——并理解如何把自己的研究方法论写成 Skill,让 Agent 按照你的标准自动执行,而不是每次重新解释。

温馨提示: 文中链接在微信中无法生效。请点击底部「阅读原文」。或直接长按/扫描如下二维码,直达原文:

作者: 连玉君 (中山大学)邮箱: arlionn@163.com

在 Python 开发中,Visual Studio Code(VScode)凭借其轻量、可扩展的特性,成为了许多开发者的首选集成开发环境。通过安装插件,VScode 能够满足多种开发需求,特别是对于 Python 开发者而言,有很多优秀的插件可以提升编程效率。本文基于用户评价和安装次数,介绍 7 类 VScode 中与 Python 相关的高评价插件,并按照功能进行分类,方便开发者选择和安装。

1. Python 基础插件

1.1 Python 插件 (Microsoft)

  • 下载量: 超过 5000 万次
  • 评分: ⭐⭐⭐⭐⭐(4.8/5)
  • 适用场景: Python 开发的所有场景
  • 插件简介: 该插件是 Microsoft 官方为 Python 开发者提供的基础插件,支持代码高亮、自动补全、Linting、调试、单元测试等功能,并可无缝集成 Jupyter Notebook。是 Python 开发的必备插件之一。
  • 用户评价: 用户普遍表示该插件几乎涵盖了所有基础开发需求,但大型项目可能会拖慢编辑器的运行速度。
  • 插件链接: Python 插件 (Microsoft)

1.2 Pylance 插件 (Microsoft)

  • 下载量: 超过 1200 万次
  • 评分: ⭐⭐⭐⭐⭐(4.9/5)
  • 适用场景: 需要强大的类型检查与智能提示的开发场景
  • 插件简介: Pylance 是 Microsoft 官方的补充插件,为 Python 开发者提供类型检查和更智能的代码提示,依托于 Pyright 类型检查器,是大中型项目的理想选择。
  • 用户评价: Pylance 的高效类型检查和智能提示功能受到开发者的广泛好评,特别适合需要严格代码规范的项目。
  • 插件链接: Pylance 插件 (Microsoft)

1.3 Jupyter 插件 (Microsoft)

  • 下载量: 超过 1000 万次
  • 评分: ⭐⭐⭐⭐(4.7/5)
  • 适用场景: 数据科学、机器学习和数据分析
  • 插件简介: 该插件为 VScode 提供了 Jupyter Notebooks 支持,允许用户在 VScode 中创建、编辑和执行 Jupyter Notebooks,适合进行交互式数据分析和可视化。
  • 用户评价: 用户普遍认为它极大简化了 Notebook 和 Python 代码的交互操作,适用于数据科学领域。
  • 插件链接: Jupyter 插件 (Microsoft)

2. 调试与错误排查插件

2.1 Python Debugger 插件 (Microsoft)

  • 下载量: 包含在 Python 插件中
  • 评分: ⭐⭐⭐⭐(4.6/5)
  • 适用场景: Python 代码调试
  • 插件简介: 该插件提供了断点调试、变量查看、条件断点等调试功能,支持本地和远程调试,是 Python 插件中的默认调试器。
  • 用户评价: 用户普遍认为其调试功能高效便捷,特别是对于初学者来说,VScode 的调试界面简洁易用。
  • 插件链接: Python Debugger 插件 (Microsoft)

2.2 Error Lens 插件 (Alexander)

  • 下载量: 超过 100 万次
  • 评分: ⭐⭐⭐⭐⭐(4.9/5)
  • 适用场景: 需要实时查看代码错误和警告的场景
  • 插件简介: Error Lens 将错误、警告信息直接显示在代码行内,使得错误更加直观可见,避免用户忽视潜在问题,大大提高了调试效率。
  • 用户评价: 用户普遍对插件的即时反馈功能表示赞赏,尤其是在大型项目中能够及时发现并解决问题。
  • 插件链接: Error Lens 插件 (Alexander)

3. 测试相关插件

3.1 Python Test Explorer 插件 (Little Fox Team)

  • 下载量: 超过 50 万次
  • 评分: ⭐⭐⭐⭐⭐(4.8/5)
  • 适用场景: 使用 pytest 或 unittest 进行单元测试的项目
  • 插件简介: 该插件与 VScode 测试资源管理器集成,允许用户运行、调试和查看 pytest 或 unittest 测试框架的测试结果,非常适合需要管理大量测试用例的项目。
  • 用户评价: 许多用户认为该插件极大简化了单元测试的管理和操作,并且测试结果的展示十分直观。
  • 插件链接: Python Test Explorer 插件 (Little Fox Team)

3.2 Pytest 插件 (Microsoft)

  • 下载量: 包含在 Python 插件中
  • 评分: ⭐⭐⭐⭐(4.7/5)
  • 适用场景: pytest 框架测试的用户
  • 插件简介: Pytest 插件为 pytest 用户提供专用功能,帮助用户快速运行、调试和管理测试用例,是大型项目的理想选择。
  • 用户评价: 用户称赞其操作简便,特别适合需要快速运行大量测试的项目。
  • 插件链接: Pytest 插件 (Microsoft)

4. 代码格式化插件

4.1 Black Formatter 插件 (Joseph)

  • 下载量: 超过 150 万次
  • 评分: ⭐⭐⭐⭐⭐(4.8/5)
  • 适用场景: 团队开发中需要统一代码格式的项目
  • 插件简介: Black 是一种知名的 Python 代码格式化工具,能够将代码自动格式化为符合 PEP 8 规范的标准风格,特别适合在团队开发中统一代码风格。
  • 用户评价: Black 插件因其严格的格式化标准受到好评,但部分用户认为其规则过于强制,缺乏定制性。
  • 插件链接: Black Formatter 插件 (Joseph)

4.2 AutoPep8 插件 (Microsoft)

  • 下载量: 超过 300 万次
  • 评分: ⭐⭐⭐⭐(4.7/5)
  • 适用场景: 需要轻量、灵活的代码格式化工具
  • 插件简介: AutoPep8 是另一种流行的代码格式化工具,允许用户快速修复不符合 PEP 8 标准的代码。相比 Black,它更加灵活,适合需要自定义格式化规则的用户。
  • 用户评价: 用户对其轻量、快捷的特性表示赞赏,适合中小型项目。
  • 插件链接: AutoPep8 插件 (Microsoft)

5. Linting 插件

5.1 Pylint 插件 (Microsoft)

  • 下载量: 超过 400 万次
  • 评分: ⭐⭐⭐⭐⭐(4.8/5)
  • 适用场景: 需要静态代码分析和严格代码风格检查的项目
  • 插件简介: Pylint 是一款功能强大的静态代码分析工具,能够检测代码中的语法错误、风格问题以及潜在的逻辑错误,适合对代码质量有严格要求的项目。
  • 用户评价: Pylint 提供的全面检查功能非常受开发者欢迎,但其严格的规则可能会在某些情况下显得过于繁琐。
  • 插件链接: Pylint 插件 (Microsoft)

5.2 Flake8 插件 (Visual Studio Team)

  • 下载量: 超过 250 万次
  • 评分: ⭐⭐⭐⭐(4.6/5)
  • 适用场景: 需要轻量级代码分析的项目
  • 插件简介: Flake8 是一种轻量级的代码 Linter 工具

,主要用于检查 Python 代码中的风格问题和代码质量,适合中小型项目。

  • 用户评价: 用户认为 Flake8 提供了简洁的反馈,但与 Pylint 相比,其功能相对有限,适合那些不需要过多静态分析的项目。
  • 插件链接: Flake8 插件 (Visual Studio Team)

6. 生产力工具插件

6.1 GitLens 插件 (Eric Amodio)

  • 下载量: 超过 900 万次
  • 评分: ⭐⭐⭐⭐⭐(4.9/5)
  • 适用场景: 需要版本控制的项目
  • 插件简介: GitLens 是一款 Git 版本控制增强工具,提供了丰富的 Git 版本管理功能,如提交历史追踪、作者标记、代码更改对比等,非常适合团队协作和代码审查。
  • 用户评价: 用户称赞 GitLens 能够直观展示代码更改记录,极大提升了多人协作中的版本控制体验。
  • 插件链接: GitLens 插件 (Eric Amodio)

6.2 Prettier - Code Formatter 插件 (Esben Petersen)

  • 下载量: 超过 800 万次
  • 评分: ⭐⭐⭐⭐(4.8/5)
  • 适用场景: 跨语言项目中的代码格式统一
  • 插件简介: Prettier 是一款流行的代码格式化工具,支持多种编程语言,能够确保代码风格一致,是多语言项目开发中的理想选择。
  • 用户评价: Prettier 因其简洁、有效的代码格式化功能受到好评,尤其适合在跨语言项目中使用。
  • 插件链接: Prettier - Code Formatter 插件 (Esben Petersen)

7. AI 代码助手插件

7.1 Codeium 插件 (Codeium)

  • 下载量: 超过 50 万次
  • 评分: ⭐⭐⭐⭐⭐(4.9/5)
  • 适用场景: 需要 AI 辅助编程的场景
  • 插件简介: Codeium 是一款基于 AI 的代码助手工具,能够根据上下文提供代码建议和补全,类似于 GitHub Copilot,适合希望提高编程效率的开发者。
  • 用户评价: Codeium 能够快速生成代码片段,帮助开发者节省手动编写代码的时间,但在某些大型项目中,生成的建议需要进一步验证。
  • 插件链接: Codeium 插件 (Codeium)

7.2 GitHub Copilot 插件 (GitHub)

  • 下载量: 超过 100 万次
  • 评分: ⭐⭐⭐⭐⭐(4.8/5)
  • 适用场景: 利用 AI 辅助生成代码的场景
  • 插件简介: GitHub Copilot 是 GitHub 推出的 AI 代码助手工具,能够基于上下文提供智能代码建议和自动补全,适合需要提高编程效率的开发者,尤其适合初学者和需要快速生成代码片段的场景。
  • 用户评价: Copilot 能够极大地提高编码速度,但部分用户反映,生成的代码需要仔细检查以确保准确性。
  • 插件链接: GitHub Copilot 插件 (GitHub)

8. 总结

本文介绍了 7 类与 Python 开发相关的 VScode 插件,从基础开发、代码格式化、调试、测试、AI 代码助手等多个维度出发,帮助开发者提升工作效率。开发者可以根据自身需求,前往 VScode 插件市场选择适合的插件,从而打造一个更加高效的Python 开发环境。

9. 附录:VScode Python 插件列表

  • 4.8 分 表示该插件在 Microsoft 插件市场 中的用户评分 (总分为 5.0 分);
  • 5000 万次 表示该插件被安装的次数。

A1. Python 基础插件

  • Python 插件 (Microsoft),4.8 分,5000 万次
  • Pylance 插件 (Microsoft),4.9 分,1200 万次
  • Jupyter 插件 (Microsoft),4.7 分,1000 万次

A2. 调试与错误排查插件

  • Python Debugger 插件 (Microsoft),4.6 分,内含于 Python 插件
  • Error Lens 插件 (Alexander),4.9 分,100 万次

A3. 测试相关插件

  • Python Test Explorer 插件 (Little Fox Team),4.8 分,50 万次
  • Pytest 插件 (Microsoft),4.7 分,内含于 Python 插件

A4. 代码格式化插件

  • Black Formatter 插件 (Joseph),4.8 分,150 万次
  • AutoPep8 插件 (Microsoft),4.7 分,300 万次

A5. Linting 插件

  • Pylint 插件 (Microsoft),4.8 分,400 万次
  • Flake8 插件 (Visual Studio Team),4.6 分,250 万次

A6. 生产力工具插件

  • GitLens 插件 (Eric Amodio),4.9 分,900 万次
  • Prettier - Code Formatter 插件 (Esben Petersen),4.8 分,800 万次

A7. AI 代码助手插件

  • Codeium 插件 (Codeium),4.9 分,50 万次
  • GitHub Copilot 插件 (GitHub),4.8 分,100 万次

10. 相关推文

Note:产生如下推文列表的 Stata 命令为:lianxh 插件 Jupyter安装最新版 lianxh 命令:ssc install lianxh, replace

  • 杨晓军, 2023, Jupyter与Stata关联-stata_kernel, 连享会 No.1165.
  • 秦利宾, 2020, Stata 与 Jupyter Notebook 关联的两种方法, 连享会 No.136.
  • 许梦洁, 2020, 使用 Jupyter Notebook 配置 Stata\Python\Julia\R, 连享会 No.84.
  • 连玉君, 2024, VScode:实用 Markdown 插件推荐, 连享会 No.1390.
  • 韩少真, 展金永, 2020, 珠联璧合 II:Jupyter Notebook 与 Matlab 之融合, 连享会 No.116.
  • 韩少真, 展金永, 2020, 珠联璧合 I:Jupyter Notebook 和 Stata 关联 (windows系统), 连享会 No.114.
  • 黄晨晨, 2023, Jupyter Notebook 与 Stata 交互:nbstata, 连享会 No.1309.
  • 黄晨晨, 2023, Stata:利用Stata生成动态文档-Quarto, 连享会 No.1304.

连享会:2026五一论文班 · 线上
时间:5月2-4日
嘉宾:郭士祺 (上海交通大学)、戚树森 (厦门大学)、李学恒 (中山大学)
咨询:王老师 18903405450(微信)

连享会微信小店上线啦!

Note:扫一扫进入“连享会微信小店”,你想学的课程在这里······

New! Stata 搜索神器:lianxh 和 songblGIF 动图介绍搜: 推文、数据分享、期刊论文、重现代码 ……👉 安装:. ssc install lianxh. ssc install songbl👉  使用:. lianxh DID 倍分法. songbl all

🍏 关于我们

  • 连享会 ( www.lianxh.cn,推文列表) 由中山大学连玉君老师团队创办,定期分享实证分析经验。
  • 直通车: 👉【百度一下:连享会】即可直达连享会主页。亦可进一步添加 「知乎」,「b 站」,「面板数据」,「公开课」 等关键词细化搜索。

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-03-27 09:55:38 HTTP/2.0 GET : https://f.mffb.com.cn/a/481103.html
  2. 运行时间 : 0.110695s [ 吞吐率:9.03req/s ] 内存消耗:4,669.10kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=6e69433dc5cdecef457a2db3a1d7f6f5
  1. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/runtime/temp/067d451b9a0c665040f3f1bdd3293d68.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000588s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000757s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000348s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000258s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000498s ]
  6. SELECT * FROM `set` [ RunTime:0.000197s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000589s ]
  8. SELECT * FROM `article` WHERE `id` = 481103 LIMIT 1 [ RunTime:0.002576s ]
  9. UPDATE `article` SET `lasttime` = 1774576538 WHERE `id` = 481103 [ RunTime:0.009630s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000270s ]
  11. SELECT * FROM `article` WHERE `id` < 481103 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000472s ]
  12. SELECT * FROM `article` WHERE `id` > 481103 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.000389s ]
  13. SELECT * FROM `article` WHERE `id` < 481103 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.004296s ]
  14. SELECT * FROM `article` WHERE `id` < 481103 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.002592s ]
  15. SELECT * FROM `article` WHERE `id` < 481103 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.011665s ]
0.113622s