当前位置:首页>鸿蒙APP>鸿蒙开发:一个简单的饼状图组件

鸿蒙开发:一个简单的饼状图组件

  • 2026-02-02 12:33:47
鸿蒙开发:一个简单的饼状图组件
HarmonyOS干货铺:只分享鸿蒙相关的精华技术文章,千帆起航,共筑鸿蒙!一个服务于鸿蒙开发者的应用【鸿元极客】已经上架,欢迎大家去应用市场搜索下载体验。

前言

饼状图是数据可视化信息传递的一种方式,凭借直观的占比呈现能力,在很多的场景下都会使用到,比如说统计分析、财务报告、业务监控等等;虽然说鸿蒙系统中没有原生的组件能够实现,但是也为我们提供了便捷的实现方式,那就是使用Canvas来自定义绘制。

本文会带着大家简单的实现绘制,并在最后为大家提供一个便捷的实现组件,我们先看一下,最终要实现的效果:

静态效果如下:

动态效果如下:

实现方式

既然自定义绘制,肯定会使用到Canvas,它是系统的画布组件,主要用于自定义绘制图形,除此之外,还需要用到CanvasRenderingContext2D对象,它相当于画笔,可以在Canvas画布组件上进行绘制,比如,绘制图形、文本、线段、图片等。

饼状图由两条直线和一条弧线构成,当两条直线完全重合时,若弧线覆盖整个圆周,则饼状图呈现为一个完整的圆形,大概可分为四步骤,首先是根据指定数组进行填装数据,并且计算出总量;接着根据当前分类的数据和总数据占比,计算出扇形的起始角度和终点角度;第三步则是根据扇形的起始角度和终点角度,以及对应的数据信息绘制扇形;最后就是根据扇形的起始角度和终点角度,以及对应的数据信息绘制折线和文字。

完整的简单饼状图绘制如下:

class SectorInfo {  name: string = ''// 名称  data: number = 0// 数据  color: string = ''// 颜色  fontSize: number = 14// 字体大小  radius: number = 40// 半径}@Entry@Componentstruct drawPieChart {@State sectorInfoArr: Array<SectorInfo> = [];@State@Watch('drawChart') isTypeChange: boolean = false;// 用来配置CanvasRenderingContext2D对象的参数,包括是否开启抗锯齿,true表明开启抗锯齿。private settings: RenderingContextSettings = new RenderingContextSettings(true);// 用来创建CanvasRenderingContext2D对象,通过在canvas中调用CanvasRenderingContext2D对象来绘制。private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings);private centerX: number = 0;private centerY: number = 0;private radius: number = 40;private allData: number = 0// 总数private maxData: number = 40// 最大值private minData: number = 20// 最小值// 绘制扇形  drawSector(startAngle: number, endAngle: number, sectorInfo: SectorInfo) {this.context.beginPath();this.context.arc(this.centerX, this.centerY, sectorInfo.radius, startAngle, endAngle);this.context.lineWidth = sectorInfo.radius * 2;this.context.strokeStyle = sectorInfo.color;this.context.stroke();this.context.restore();  }// 绘制折线和文字  drawBrokenLineAndText(startAngle: number, endAngle: number, sectorInfo: SectorInfo) {let angle = endAngle - startAngle;let brokenLineLength: number = 20;let brokenLineLengthTemp: number = 15;// 计算扇形中心角度let centerAngle = startAngle + angle / 2;let r = sectorInfo.radius * 2 + brokenLineLength / 2;// 计算折线起始点let startX = this.centerX + (r - brokenLineLength) * Math.cos(centerAngle);let startY = this.centerY + (r - brokenLineLength) * Math.sin(centerAngle);// 计算折线转折点let brokenX = this.centerX + r * Math.cos(centerAngle);let brokenY = this.centerY + r * Math.sin(centerAngle);let endX = brokenX;let endY = brokenY;// 添加文字属性this.context.textBaseline = 'middle';this.context.fillStyle = sectorInfo.color;this.context.font = this.getUIContext().fp2px(sectorInfo.fontSize) + 'px sans-serif';// 获取文本let textWidth = this.context.measureText(sectorInfo.name).width;let textHeight = this.context.measureText(sectorInfo.name).height;let textX = endX;let textY = endY - textHeight + 5;let lastX = 0;// 根据文字计算折线终点,根据角度单位判断折线左右方向,以及文字的起点if (centerAngle < Math.PI / 2) {this.context.textAlign = 'right';      endX = brokenX + brokenLineLengthTemp + textWidth;      textX = brokenX + brokenLineLengthTemp + textWidth;      lastX = endX - 27;    } else {this.context.textAlign = 'left';      endX = brokenX - brokenLineLengthTemp - textWidth;      textX = endX;      lastX = endX + 27;    }// 绘制折线this.context.beginPath();this.context.lineWidth = 2;this.context.strokeStyle = sectorInfo.color;this.context.moveTo(startX, startY);this.context.lineTo(brokenX, brokenY);this.context.lineTo(lastX, endY);// 填充文字this.context.fillText(sectorInfo.name, textX, textY);this.context.stroke();  }  aboutToAppear(): void {// 装载模拟数据const categories = ['视频广告''搜索引擎''直接访问''邮件营销''联盟广告'];const dataCount = [12131];const colorArr =      ['#4f81bd''#c0504d''#9bbb59''#8064a2''#4bacc6 '];for (let index = 0; index < categories.length; index++) {let sectorInfo = new SectorInfo();      sectorInfo.name = categories[index];      sectorInfo.data = dataCount[index];      sectorInfo.color = colorArr[index];this.allData += dataCount[index];this.sectorInfoArr.push(sectorInfo);if (this.maxData < dataCount[index]) {this.maxData = dataCount[index];      }if (this.minData > dataCount[index]) {this.minData = dataCount[index];      }    }  }  drawChart() {this.context.clearRect(00this.centerX * 2this.centerY * 2);// 上一个扇形的结束角度let lastEndAngle: number = -Math.PI / 2;for (let index = 0; index < this.sectorInfoArr.length; index++) {const element = this.sectorInfoArr[index];// 计算当前扇形的起始角度和终点角度let startAngle: number = lastEndAngle;let endAngle: number = lastEndAngle + element.data / this.allData * 2 * Math.PI;if (this.isTypeChange) {        element.radius = this.radius * (0.5 + (element.data - this.minData) / this.maxData / 2);      } else {        element.radius = this.radius;      }this.drawSector(startAngle, endAngle, element);this.drawBrokenLineAndText(startAngle, endAngle, element);      lastEndAngle = endAngle;    }  }  build() {    Column() {      Canvas(this.context)        .width('90%')        .height('40%')        .backgroundColor('#fff5f5f1')        .onAreaChange((oldArea: Area, newArea: Area) => {// 计算饼图的中心点this.centerX = Number(newArea.width) / 2;this.centerY = Number(newArea.height) / 2;this.drawChart();        })        .onReady(() => {console.info('onReady');        })      Button('切换状态')        .onClick(() => {this.isTypeChange = !this.isTypeChange;        })    }    .height('100%')    .width('100%')  }}

饼状图组件使用

如果大家不想进行逐步绘制呢,目前完整的饼状图组件,已经上传到了中心仓库,大家可以进行选择使用,中心仓库地址为:

https://ohpm.openharmony.cn/#/cn/detail/@abner%2Fpie

目前功能支持功能如下:

1、支持普通的饼状图表展示。

2、支持饼状图点击。

3、支持饼状图圆环形式。

4、支持外部折线标注。

5、支持动画形式进入。

快速使用

方式一:在Terminal窗口中,执行如下命令安装三方包,DevEco Studio会自动在工程的oh-package.json5中自动添加三方包依赖。

建议:在使用的模块路径下进行执行命令。

ohpm install @abner/pie

方式二:在需要的模块中的oh-package.json5中设置三方包依赖,配置示例如下:

"dependencies": { "@abner/pie""^1.0.0"}

代码使用

准备好数据

private chartData: PieChartData[] = [  { label: "类别A", value: 30, color: "#3498db" },  { label: "类别B", value: 20, color: "#e74c3c" },  { label: "类别C", value: 25, color: "#2ecc71" },  { label: "类别D", value: 15, color: "#f39c12" },  { label: "类别E", value: 10, color: "#9b59b6" }];

简单使用

PieChartView({  chartData: this.chartData,  textColor: Color.White}).height(200)

外部标注

PieChartView({  chartData: this.chartData,  radius: 80//饼状图半径  chartType: PieChartType.external//外部标注}).height(220)

外部折线标注

PieChartView({  chartData: this.chartData,  radius: 80//饼状图半径  chartType: PieChartType.polyline//外部折线标注}).height(220)

点击交互

PieChartView({  chartData: this.chartData,  radius: 80//饼状图半径  chartType: PieChartType.clickInteraction//可点击交互}).height(220)

圆环设置

PieChartView({  chartData: this.chartData,  radius: 80//饼状图半径  chartType: PieChartType.ring//圆环}).height(220)

圆环点击交互

PieChartView({  chartData: this.chartData,  radius: 50//饼状图半径  chartType: PieChartType.ringClick//圆环点击交互}).height(220)

左侧标注

Row() {  Column() {    ForEach(this.chartData, (item: PieChartData) => {      Row() {        Circle()          .width(10)          .height(10)          .fill("" + item.color)          .borderRadius(10)        Text(item.label)          .margin({ left: 5 })          .fontColor($r("app.color.title_color"))      }.margin({ bottom: 5 })            })  }.margin({ right: 10 })  PieChartView({    chartData: this.chartData,    textColor: Color.White  }).height(200)    .width(200)}

顶部标注

Column() {  Row() {    ForEach(this.chartData, (item: PieChartData) => {      Row() {        Circle()          .width(10)          .height(10)          .fill("" + item.color)          .borderRadius(10)        Text(item.label)          .margin({ left: 5 })          .fontColor($r("app.color.title_color"))      }.margin({ right: 5 })            })  }.margin({ bottom: 10 })  PieChartView({    chartData: this.chartData,    textColor: Color.White  }).height(200)    .width(200)}

点击提示

Column() {  Row() {    ForEach(this.chartData, (item: PieChartData) => {      Row() {        Circle()          .width(10)          .height(10)          .fill("" + item.color)          .borderRadius(10)        Text(item.label)          .margin({ left: 5 })          .fontColor($r("app.color.title_color"))      }.margin({ right: 5 })            })  }.margin({ bottom: 10 })  Stack() {    PieChartView({      chartData: this.chartData,      textColor: Color.White,      isAllowClick: true,      onItemClick: (position) => {this.tempPieChartData = this.chartData[position]        clearTimeout(this.tempPieChartTimeout)this.tempPieChartTimeout = setTimeout(() => {this.tempPieChartData = undefined        }, 2000)      }    }).height(200)      .width(200)    Row() {      Circle()        .width(10)        .height(10)        .fill("" + this.tempPieChartData?.color)        .borderRadius(10)      Text(this.tempPieChartData?.label)        .margin({ left: 5 })        .fontColor(Color.White)    }.backgroundColor("#80000000")      .padding(10)      .borderRadius(3)      .visibility(this.tempPieChartData != undefined ? Visibility.Visible : Visibility.None)  }}

动画进入

PieChartView({  chartData: this.chartData,  radius: 80//饼状图半径  chartType: PieChartType.animation, //动画进入  pieChartControl: this.pieChartControl,  animateTime: 50}).height(220)  .margin({ top: 10 })

属性介绍

常见属性配置如下:

PieChartData

相关总结

目前的饼状图组件,可以实现多种的场景,对应着前言中的效果,如果有其他的效果还未实现,或者有问题,都可以进行反馈,希望这个组件,可以帮助到您。

最新文章

随机文章

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