当前位置:首页>python>Python-Flask实现各种样式的奖状生成器

Python-Flask实现各种样式的奖状生成器

  • 2026-07-02 11:30:12
Python-Flask实现各种样式的奖状生成器

🎉 效果图

100字幽默开场白

“别人做奖状靠PS,我们做奖状靠F12!”——打开这张网页,3秒生成一张带钢印质感的“官方”奖状,老板看了沉默,HR看了流泪,连你妈都信了你是“全宇宙最乖崽”!输入名字、选个模板、点下下载,高清PNG直接到手,从此朋友圈横着走,吹牛再也不用打草稿!


📑 全文导航(3500+字,条理拉满)

章节
内容
码量/分钟
1️⃣
项目总览:能干嘛、技术栈、目录结构
3 min
2️⃣
骨架梳理:HTML→CSS→JS 三级流水线
4 min
6️⃣
总结:知识点图谱 & 项目目标
3 min

1️⃣ 项目总览:能干嘛、长啥样、技术栈

1.1 功能一句话

“填名字→选模板→点下载→高清奖状 PNG 到手”,全程浏览器完成,零安装、零付费、零 PS。

1.2 视觉速览

  • 顶部大标题:奖状生成器(嚣张且自信)
  • 左侧表单:4 个输入框 + 2 个按钮(预览/下载)
  • 右侧实时预览:横版、竖版、正方形 3 套模板,点击即切
  • 底部输出:html2canvas 一键截屏,2K 清晰度 PNG 直接落盘

1.3 技术栈

层级
技术
说明
结构
原生 HTML5
无框架,秒开
样式
TailwindCSS CDN
原子类,写样式像拼乐高
绘图
html2canvas
DOM→PNG 截屏神器
图片
阿里云 OSS 公开图床
跨域已配好
脚本
ES6 模块化
全程 <script> 内联,方便复制粘贴

2️⃣ 骨架梳理:HTML→CSS→JS 三级流水线

2.1 HTML 区域划分(语义化 + 注释)

<!-- ① 模板选择区:data-* 携带尺寸 & 配置 -->
<divclass="flex space-x-4 overflow-x-auto">
<imgsrc="横版封面"class="template-preview"
data-bg="真实背景地址"
data-size='{"width":"600px","height":"400px"}'
data-config='{"contentWidth":"80%","titleRatio":0.08,...}'>

</div>

<!-- ② 表单输入区:4 个核心字段 -->
<inputid="awardObject"value="张三">
<textareaid="awardContent">你表现突出...</textarea>
<inputtype="date"id="issueTime">
<inputid="issueOrg"value="山东小飞侠科技有限公司">

<!-- ③ 预览&下载区:loading 遮罩 + 绝对定位证书 -->
<divid="certificate"class="certificate">
<divclass="loading hidden">加载中...</div>
<divclass="certificate-content">...动态文本...</div>
</div>
  • 用 data-bg / data-size / data-config 把模板参数一次性带全,JS 读一遍即可,不用写死 if/else
  • loading 遮罩防止图片没加载完就截图,导致空白奖状

2.2 CSS 核心代码(5 行就够)

.certificate {
position: relative;
background-size: cover;
background-repeat: no-repeat;
transition: all 0.3s ease;
}
.certificate-content {
widthvar(--content-w, 80%);
colorvar(--text-c, #333);
text-shadowvar(--shadow, none);
}
  • 全部动态样式交给 JS 计算,CSS 只负责过渡动画基础布局
  • 用 CSS 变量 var(--*) 实现“换肤”效果,代码更少,性能更高

2.3 JS 文件级流程图

├─ ① 模板选择 → 读 data-* → preloadImage()
├─ ② 预览按钮 → 校验表单 → updatePreviewContent()
├─ ③ 下载按钮 → html2canvas → canvas.toDataURL() → 自动下载
├─ ④ 工具函数:formatDate / adjustTextColor / applyTemplateConfig
└─ ⑤ 全局状态:selectedBg / selectedSize / selectedConfig / isImageLoaded

3️⃣ 模板配置:data-* 里藏了整座“数据库”

3.1 数据结构设计(一目了然)

// 单模板配置示例(直接写死在 DOM 里,零请求)
{
"contentWidth""80%",      // 内容区宽度
"titleRatio"0.08,         // 标题字号 = 证书最短边 * 0.08
"objectRatio"0.06,        // 人名字号
"descRatio"0.05,          // 正文字号
"infoRatio"0.04,          // 落款字号
"spacingRatio"0.05// 行间距
}
  • 比例而不用固定像素,保证 600×400 和 1200×800 都能等比缩放
  • 后续加新模板,只需再贴一行 <img data-*>无需改 JS

3.2 动态应用配置(核心函数 10 行)

functionapplyTemplateConfig({
const base = Math.min(certWidth, certHeight);
  certificateTitle.style.fontSize = `${base * selectedConfig.titleRatio}px`;
  certificateTitle.style.marginBottom = `${base * selectedConfig.spacingRatio}px`;
// ...其余字段同理
}

4️⃣ 表单验证:让用户无路可错

4.1 验证逻辑(简洁暴力)

previewBtn.addEventListener('click', () => {
const fields = [awardObject, awardContent, issueTime, issueOrg];
const empty = fields.map(i => i.value.trim()).some(v => !v);
if (empty) return alert('请填写完整信息');
  ...
});
  • 不整正则,空值即拦截,体验大于炫技
  • 时间控件 type="date" 自带格式校验,移动端直接弹出日历

5️⃣ 文字自适应:一行函数搞定“字号伸缩”

5.1 代码实现

functionadjustTextColorForBackground({
const whiteBgList = ['竖版模板'];
const isWhite = whiteBgList.includes(currentTemplate.alt);
  certificateContent.style.color = isWhite ? '
#fff' : '#333';
  certificateContent.style.textShadow = isWhite ? '1px 1px 2px rgba(0,0,0,0.3)' : 'none';
}
  • 深色背景用白字,浅色背景用黑字,肉眼可见的质感提升
  • 后续加模板,只需往 whiteBgList push 一个名字

6️⃣ 高清下载:html2canvas 三步曲

6.1 调用链(含等待背景图)

downloadBtn.addEventListener('click'async () => {
  loadingIndicator.classList.remove('hidden');
awaitnewPromise(r => setTimeout(r, 800)); // 等背景渲染
const canvas = await html2canvas(certificate, {
useCORStrue,
scale2,        // 2 倍图,打印级清晰度
loggingfalse
  });
  loadingIndicator.classList.add('hidden');
const link = document.createElement('a');
  link.download = '奖状.png';
  link.href = canvas.toDataURL('image/png');
  link.click();
});
  • scale: 2 直接 2K 分辨率,打印不发虚
  • useCORS: true 解决背景图跨域,阿里云 OSS 已配好 Access-Control-Allow-Origin: *

7️⃣ 性能 & 兼容性优化清单

优化点
实现方案
收益
图片预加载
new Image()
 + 监听 onload
防止空白截图
防抖下载
按钮 disabled 到截图完成
避免狂点崩溃
移动端适配
viewport
 + Tailwind 响应式
手机横屏也能用
字体跨域
图片走 CDN,已开 CORS
html2canvas 不报错
体积控制
零框架、零图标字体
整页 < 200 KB,秒开

8️⃣ 可扩展玩法(给你几个鬼点子)

  1. 批量奖状 → 上传 CSV → 前端 for 循环下载压缩包(JSZip)
  2. 电子签名 → 手写板 canvas → 把签名画进落款
  3. 二维码 → 调用 qrcode.js → 扫码验证真伪
  4. 暗黑模式 → tailwind dark: → 一键换肤
  5. Vue/React 化 → 抽成组件 → 发 NPM 包,下班!

9️⃣ 知识点大总结(前端小白 → 进阶地图)

HTML 语义化:fieldset、label、input 类型
CSS 现代布局:flex、grid、CSS 变量、响应式
JavaScript 基础:DOM、事件、data-*、JSON.parse
Canvas 基础:html2canvas 配置、跨域、清晰度
性能优化:预加载、防抖、缓存、体积
安全 & 法律:版权声明、用途提示、MIT 开源

🔚 结语:把代码抱回家,把吹牛留给我

全文 3500+ 字,从 <!DOCTYPE> 到 link.click()每一步都摊开给你看
不用 PS、不用后端、不用花一分钱,Ctrl+S 保存就能跑
下次公司年会、班级评优、朋友圈装 X,打开网页 3 秒出图,高清奖状甩上去,点赞数翻倍,评论区封神

唯一提醒:
“本工具仅供学习娱乐,请勿伪造官方文件”——吹牛可以,犯法别碰。

👻 祝你玩得开心,我们下一个魔性项目见!

部分代码-未优化版
奖状生成器    .template-preview {      width: 100px;      height: 120px;      object-fit: cover;      cursor: pointer;      border: 2px solid transparent;      transition: all 0.3s ease;    }<pre><code>.template-preview.selected {  border: 2px solid #3B82F6;  transform: scale(1.05);}.certificate {  position: relative;  margin: 20px auto;  background-size: cover;  background-repeat: no-repeat;  background-position: center;  display: flex;  justify-content: center;  align-items: center;  box-sizing: border-box;  transition: all 0.3s ease;}.certificate-content {  text-align: center;  color: #333;  position: relative;  z-index: 10;  transition: all 0.3s ease;  overflow: hidden;}.certificate-title {  font-weight: bold;  margin-bottom: 1.5rem;  transition: all 0.3s ease;}.certificate-object {  margin-bottom: 1rem;  transition: all 0.3s ease;  font-weight: 600;}.certificate-desc {  margin-bottom: 1.5rem;  line-height: 1.6;  transition: all 0.3s ease;}.certificate-info {  display: flex;  justify-content: space-between;  width: 100%;  transition: all 0.3s ease;}.loading {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  background: rgba(255,255,255,0.8);  display: flex;  justify-content: center;  align-items: center;  z-index: 20;}</code></pre>奖状生成器<!-- 模板选择区域 --><div class="mb-8">  <h2 class="text-xl font-semibold text-gray-700 mb-4">选择奖状模板</h2>  <div class="flex space-x-4 overflow-x-auto pb-2">    <!-- 横版模板 -->    <img src="https://i-blog.csdnimg.cn/direct/b54963faa52148dc98069f32471befad.jpeg" alt="横版模板1" class="template-preview"      data-bg="https://i-blog.csdnimg.cn/direct/b54963faa52148dc98069f32471befad.jpeg"       data-size='{"width":"600px","height":"400px"}'      data-config='{"contentWidth":"80%","titleRatio":0.08,"objectRatio":0.06,"descRatio":0.05,"infoRatio":0.04,"spacingRatio":0.05}'>    <!-- 竖版模板 -->    <img src="https://i-blog.csdnimg.cn/direct/db856fe5780645138576da120ba61467.png" alt="竖版模板" class="template-preview"      data-bg="https://i-blog.csdnimg.cn/direct/db856fe5780645138576da120ba61467.png"      data-size='{"width":"400px","height":"600px"}'      data-config='{"contentWidth":"75%","titleRatio":0.06,"objectRatio":0.05,"descRatio":0.04,"infoRatio":0.035,"spacingRatio":0.04}'>    <!-- 正方形模板 -->    <img src="https://i-blog.csdnimg.cn/direct/ae50565d09a44ef8bcf00caf20f94c69.png" alt="正方形模板" class="template-preview"      data-bg="https://i-blog.csdnimg.cn/direct/ae50565d09a44ef8bcf00caf20f94c69.png"      data-size='{"width":"500px","height":"500px"}'      data-config='{"contentWidth":"78%","titleRatio":0.07,"objectRatio":0.055,"descRatio":0.045,"infoRatio":0.04,"spacingRatio":0.045}'>  </div></div><!-- 表单输入区域 --><div class="space-y-6">  <div>    <label for="awardObject" class="block text-gray-700 mb-2">奖励对象</label>    <input type="text" id="awardObject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" value="张三">  </div>  <div>    <label for="awardContent" class="block text-gray-700 mb-2">奖励内容</label>    <textarea id="awardContent" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">在这学期中,你表现突出,始终秉持认真负责的态度,在学习方面取得优异成果,充分展现了敬业精神、奉献精神。特授予"学习标兵"荣誉称号,以资鼓励。</textarea>  </div>  <div>    <label for="issueTime" class="block text-gray-700 mb-2">颁发时间</label>    <input type="date" id="issueTime" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" value="2025-09-10">  </div>  <div>    <label for="issueOrg" class="block text-gray-700 mb-2">颁发机构</label>    <input type="text" id="issueOrg" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" value="山东小飞侠科技有限公司">  </div>  <div class="flex space-x-4">    <button id="previewBtn" class="px-6 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 focus:outline-none focus:ring-2 focus:ring-blue-500">预览</button>    <button id="downloadBtn" class="px-6 py-2 bg-green-500 text-white rounded-md hover:bg-green-600 focus:outline-none focus:ring-2 focus:ring-green-500" disabled>下载图片</button>  </div></div><!-- 预览区域 --><div id="previewContainer" class="mt-8 hidden">  <h2 class="text-xl font-semibold text-gray-700 mb-4">奖状预览</h2>  <div id="certificate" class="certificate">    <div class="loading hidden">加载中...</div>    <div class="certificate-content">      <div class="certificate-title">荣誉证书</div>      <div class="certificate-object" id="previewObject"></div>      <div class="certificate-desc" id="previewContent"></div>      <div class="certificate-info">        <div id="previewOrg"></div>        <div id="previewTime"></div>      </div>    </div>  </div></div>    // 获取DOM元素    const templatePreviews = document.querySelectorAll('.template-preview');    const awardObjectInput = document.getElementById('awardObject');    const awardContentInput = document.getElementById('awardContent');    const issueTimeInput = document.getElementById('issueTime');    const issueOrgInput = document.getElementById('issueOrg');    const previewBtn = document.getElementById('previewBtn');    const downloadBtn = document.getElementById('downloadBtn');    const previewContainer = document.getElementById('previewContainer');    const certificate = document.getElementById('certificate');    const certificateContent = document.querySelector('.certificate-content');    const certificateTitle = document.querySelector('.certificate-title');    const certificateObject = document.querySelector('.certificate-object');    const certificateDesc = document.querySelector('.certificate-desc');    const certificateInfo = document.querySelector('.certificate-info');    const previewObject = document.getElementById('previewObject');    const previewContent = document.getElementById('previewContent');    const previewOrg = document.getElementById('previewOrg');    const previewTime = document.getElementById('previewTime');    const loadingIndicator = certificate.querySelector('.loading');    let selectedBg = '';    let selectedSize = {};    let selectedConfig = {};    let isImageLoaded = false;    // 默认选中第一个模板并填充默认值    if (templatePreviews.length > 0) {      templatePreviews[0].classList.add('selected');      selectedBg = templatePreviews[0].dataset.bg;      selectedSize = JSON.parse(templatePreviews[0].dataset.size);      selectedConfig = JSON.parse(templatePreviews[0].dataset.config);      preloadImage(selectedBg);      updatePreviewContent(); // 初始化预览内容    }    // 预加载图片函数    function preloadImage(url) {      isImageLoaded = false;      const img = new Image();      img.crossOrigin = 'anonymous'// 处理跨域      img.src = url;      img.onload = function() {        isImageLoaded = true;        // 如果预览已显示,更新背景        if (!previewContainer.classList.contains('hidden')) {          certificate.style.backgroundImage = `url(${url})`;          applyTemplateConfig();        }      };      img.onerror = function() {        console.error('图片加载失败:', url);        alert('模板图片加载失败,请尝试其他模板');      };    }    // 应用模板配置 - 关键的自适应逻辑    function applyTemplateConfig() {      if (Object.keys(selectedSize).length === 0 || Object.keys(selectedConfig).length === 0return;      // 设置证书尺寸      certificate.style.width = selectedSize.width;      certificate.style.height = selectedSize.height;      // 获取证书实际尺寸(像素值)      const certWidth = parseInt(selectedSize.width);      const certHeight = parseInt(selectedSize.height);      // 计算基准尺寸(使用较小的边作为参考)      const baseSize = Math.min(certWidth, certHeight);      // 应用内容容器配置      certificateContent.style.width = selectedConfig.contentWidth;      // 基于比例计算字体大小和间距(确保在不同尺寸模板上都合适)      certificateTitle.style.fontSize = `${baseSize * selectedConfig.titleRatio}px`;      certificateTitle.style.marginBottom = `${baseSize * selectedConfig.spacingRatio}px`;      certificateObject.style.fontSize = `${baseSize * selectedConfig.objectRatio}px`;      certificateObject.style.marginBottom = `${baseSize * selectedConfig.spacingRatio * 0.8}px`;      certificateDesc.style.fontSize = `${baseSize * selectedConfig.descRatio}px`;      certificateDesc.style.marginBottom = `${baseSize * selectedConfig.spacingRatio}px`;      certificateInfo.style.fontSize = `${baseSize * selectedConfig.infoRatio}px`;      // 动态调整文本颜色(根据模板背景)      adjustTextColorForBackground();    }    // 根据背景调整文本颜色    function adjustTextColorForBackground() {      // 获取当前选中的模板索引      const templateIndex = Array.from(templatePreviews).findIndex(t => t.classList.contains('selected'));      // 针对不同模板设置合适的文字颜色      if (templateIndex === 1) { // 竖版模板使用白色文字        certificateContent.style.color = '#fff';        certificateContent.style.textShadow = '1px 1px 2px rgba(0,0,0,0.3)';      } else { // 其他模板使用深色文字        certificateContent.style.color = '#333';        certificateContent.style.textShadow = 'none';      }    }    // 更新预览内容    function updatePreviewContent() {      previewObject.textContent = awardObjectInput.value.trim();      previewContent.textContent = awardContentInput.value.trim();      previewOrg.textContent = `颁发机构:${issueOrgInput.value.trim()}`;      previewTime.textContent = `颁发时间:${formatDate(issueTimeInput.value)}`;    }    // 模板选择事件    templatePreviews.forEach(template => {      template.addEventListener('click', () => {        templatePreviews.forEach(t => t.classList.remove('selected'));        template.classList.add('selected');        selectedBg = template.dataset.bg;        selectedSize = JSON.parse(template.dataset.size);        selectedConfig = JSON.parse(template.dataset.config);        preloadImage(selectedBg);        // 如果预览区域已显示,更新配置        if (!previewContainer.classList.contains('hidden')) {          loadingIndicator.classList.remove('hidden');          // 图片加载完成后隐藏加载状态          setTimeout(() => {            if (isImageLoaded) {              certificate.style.backgroundImage = `url(${selectedBg})`;              applyTemplateConfig();              loadingIndicator.classList.add('hidden');            }          }, 500);        }      });    });    // 预览按钮事件    previewBtn.addEventListener('click', () => {      if (!selectedBg) {        alert('请先选择奖状模板');        return;      }      const awardObject = awardObjectInput.value.trim();      const awardContent = awardContentInput.value.trim();      const issueTime = issueTimeInput.value;      const issueOrg = issueOrgInput.value.trim();      if (!awardObject || !awardContent || !issueTime || !issueOrg) {        alert('请填写完整信息');        return;      }      // 显示加载状态      loadingIndicator.classList.remove('hidden');      // 确保图片加载完成后再设置背景      const setBackground = () => {        if (isImageLoaded) {          certificate.style.backgroundImage = `url(${selectedBg})`;          applyTemplateConfig();          updatePreviewContent();          loadingIndicator.classList.add('hidden');        } else {          setTimeout(setBackground, 100);        }      };      setBackground();      // 显示预览区域      previewContainer.classList.remove('hidden');      // 启用下载按钮      downloadBtn.disabled = false;    });    // 下载按钮事件    downloadBtn.addEventListener('click', () => {      if (!selectedBg) {        alert('请先选择奖状模板');        return;      }      if (!isImageLoaded) {        alert('图片正在加载中,请稍候再试');        return;      }      // 显示加载状态      loadingIndicator.classList.remove('hidden');      // 确保下载时使用当前选中的背景和配置      certificate.style.backgroundImage = `url(${selectedBg})`;      applyTemplateConfig();      updatePreviewContent();      // 等待背景图应用完成      setTimeout(() => {        html2canvas(certificate, {          useCORS: true,  // 解决跨域图片问题          logging: false,          allowTaint: false,          scale: 2 // 提高清晰度        }).then(canvas => {          loadingIndicator.classList.add('hidden');          const link = document.createElement('a');          link.download = '奖状.png';          link.href = canvas.toDataURL('image/png');          link.click();        }).catch(error => {          loadingIndicator.classList.add('hidden');          console.error('下载失败:', error);          alert('下载失败,请重试');        });      }, 800);    });    // 格式化日期显示    function formatDate(dateString) {      if (!dateString) return '';      const date = new Date(dateString);      return `${date.getFullYear()}年${date.getMonth() + 1}月${date.getDate()}日`;    }

点击【关注+收藏】获取最新的实战代码案例

特别声明:

1:接收最新文章代码,请点击下方并关注+收藏公众号!

2:文章中的源码或者exe程序,非免费,源码+EXE程序=10元!

3:有源码需求的,请关注公众号并联系作者处获取源码!

4:再次强调:本文仅供技术学习,非法用途后果自负!

Python 20天的学习计划

Python的 7 天 学习计划

Python实现蜈蚣小游戏

Python实现打地鼠

Python实现Ai对战五子棋

Python实现哪吒打字打气球

Python实现各种请假诊断证明书

Python实现暴力破解程序

Python实现自定义印章生成小工具

Python实现印章阈值抠图小助手

Python实现各种请假诊断证明书

Python实现太空侵略者

Python实现俄罗斯方块小游戏

Python实现吃豆人代码全源码解析

Python实现汉字打砖块小游戏

Python实现随机多样式多等级的迷宫生成器

Python实现贪吃蛇小游戏

Python实现暴力破解程序

Python证件照多尺寸生成器

Python实现各种请假诊断证明书

Python实现印章秒修小神器

Python实现中文图片文字处理器——让汉字“贴图”飞一会儿!

Python证件照多尺寸生成器

Python证件照多尺寸生成器

Python实现各种请假诊断证明书

Python实现把 Word 当口播稿,把键盘敲成主播台!

Python实现诊断证明书编辑器——从 0 到 1 的“土味”GUI 之旅

Python实现把 Word 当口播稿,把键盘敲成主播台!

Python-Ai基于火山方舟&豆包API的全屏实时聊天应用

Python实现简易房租汇总计算器

Python实现类似postman调用

Python实现局域网文件共享神器

Python实现在线书法生成器

Python实现叶子雕刻图

Python证件照多尺寸生成器

Python实现人像证件照背景替换

Python开发自定义打包exe程序

Python实现印章生成器

Python实现简易房租汇总计算器

Python实现哪吒打字打气球

Python实现批量生产证书工厂

Python一键生成带印章的word请假条

Python快捷ps图片取色等编辑器

Python实现批量生产证书工厂

Python快捷ps图片取色等编辑器

Python实现自定义取色器

Python实现自动变成温柔水彩素描

Python实现创意画板代码

用Python打造汉字笔画查询工具:从GUI界面到笔顺动画实现

Python实现表情包制作器

Python实现中国象棋小游戏

Python实现印章生成器

Python模拟实现金山打字通

Python超实用 Markdown 转富文本神器 —— 代码全解析

Python实现贪吃蛇小游戏源码解析

Python实现二维码生成

Python实现视频播放器

Python实现印章生成器

Python实现在线印章制作

Python+Ai实现一个简单的智能语音小助手

Python实现简单记事本

Python实现Markdown转HTML工具代码

Python实现创意画板代码

Python实现简易图画工具代码

Python实现视频播放器

Python实现简单记事本

Python 实现连连看游戏代码解析

Python实现简单电脑进程管理器

Python一个超实用的工具-词频统计工具

Python简易爬虫天气工具

Python定时任务提醒工具

Python《猜数字游戏代码解析》

Python《简易计算器代码解析》

Python+Ai在线文档生成小助手

Python 《密码生成器代码解析》

Python|+Ai实现一个简单的智能语音小助手

Python实现简易图画工具代码

Python实现Markdown转Html

Python实现视频播放器

Python 实现连连看游戏代码解析

Python实现火山AI调用生成故事

Python实现豆包Ai调用生成故事

Python实现简单记事本

Python实现简单电脑进程管理器

实战1

  1. Python:生成二维码生成器

  2. Python-pgame实现迷宫

  3. Python-实现天气时钟小助手

  4. Python-QrCode实现各种二维码

  5. Python-pyglet实现鸿蒙时钟

  6. Python-pickle解析获取微信好友信息

  7. Python-wxPy初版实现微信消息轰炸

  8. Python实现八卦星空时钟

  9. Python实现国庆红旗头像效果

  10. Python-PIL实现图片上指定位置添加图标识

实战2

  1. Python-wxPy初版实现微信消息轰炸

  2. Python-PIL库Image类解析

  3. Python-tlinter实现简单学生管理系统

  4. Python-itChat实现微信消息推发

  5. Python实现Pdf转Word

  6. Python-实现自动生成对联小助手

  7. Py2Exe另外一种方式的打包

  8. Python-tts生成语音转换小助手

  9. python-win32等实现exe自动添加到电脑自启动选项

  10. python实现桌面录制视频

  11. PySimpleGUI-checkboxPython实现图片截取成九宫格

  12. python打包成exe文件

  13. Python-faker生成虚拟数据

  14. python实现播放器Python-FastApi简单实现

  15. python爬取豆瓣电影影评

  16. Python 爬取公众号文章集合

实战3

  1. python实现简易飞花令

  2. python-获取图猜成语的图片

  3. python-menu菜单实现

  4. Python-pySimpleGUI实现界面

  5. Python-彩色图片转换白描

  6. Python-moviepy-实现音视频播放器

  7. Python操作SQLite数据库

  8. Python-PySimpleGUI实现菜单

  9. python-Tkinter实现个性签名

  10. Python-WordCloud云词图

  11. Python-customTkinter的使用

  12. Python-tkinter(下)

  13. Python-tkinter(中)

  14. python-tkinter(1)

  15. Python实现视频小助手

实战4

  1. Python实现视频小助手

  2. Python-flask-1:搭建主页面

  3. Python之tttkbootstrap界面

  4. python-PyQt5实现图片显示和简易阅读器

  5. 在Pycharm上配置Qt Designer 及 Pyuic

  6. Python之PIL实现一寸二寸等图片的裁剪和生成

  7. Python爬取金山词典查询结果

  8. python实现生成个性二维码 

  9. python实现垃圾分类查询器

  10. python-实现菜单menu

  11. Python 领域运用之:自动化测试

  12. Python 领域运用:Web 开发

  13. Python 领域运用:自动化运维

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-07-03 06:41:46 HTTP/2.0 GET : https://f.mffb.com.cn/a/502160.html
  2. 运行时间 : 0.174035s [ 吞吐率:5.75req/s ] 内存消耗:4,540.47kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=e05e3a1558b031a0b91bceb5e2bf9e90
  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.000667s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000976s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.001049s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.026115s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000876s ]
  6. SELECT * FROM `set` [ RunTime:0.000238s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000679s ]
  8. SELECT * FROM `article` WHERE `id` = 502160 LIMIT 1 [ RunTime:0.001166s ]
  9. UPDATE `article` SET `lasttime` = 1783032106 WHERE `id` = 502160 [ RunTime:0.021806s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.004980s ]
  11. SELECT * FROM `article` WHERE `id` < 502160 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000724s ]
  12. SELECT * FROM `article` WHERE `id` > 502160 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.001334s ]
  13. SELECT * FROM `article` WHERE `id` < 502160 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.022373s ]
  14. SELECT * FROM `article` WHERE `id` < 502160 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.003117s ]
  15. SELECT * FROM `article` WHERE `id` < 502160 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.019048s ]
0.175623s