news 2026/4/29 12:09:41

宠物统计模块 - Cordova与OpenHarmony混合开发实战

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
宠物统计模块 - Cordova与OpenHarmony混合开发实战

欢迎大家加入开源鸿蒙跨平台开发者社区,一起共建开源鸿蒙跨平台生态。

📌 概述

宠物统计模块用于统计每只宠物的相关数据。这个模块提供了宠物的日记数、健康记录数、疫苗接种情况等统计信息。通过Cordova框架,我们能够在Web层实现灵活的宠物统计展示,同时利用OpenHarmony的数据聚合能力执行宠物相关的统计计算。

宠物统计模块采用了卡片式设计,每只宠物显示为一个统计卡片,包含该宠物的各项统计数据。

🔗 完整流程

数据聚合流程:应用为每只宠物收集相关的统计数据,包括日记数、健康记录数、疫苗接种次数等。

统计展示流程:应用以卡片形式展示每只宠物的统计数据,用户可以点击卡片查看详细统计。

对比分析流程:用户可以选择多只宠物进行对比分析,查看它们之间的差异。

🔧 Web代码实现

// 计算宠物统计asyncfunctioncalculatePetStatistics(){try{constpets=awaitdb.getAllPets();constdiaries=awaitdb.getAllDiaries();consthealthRecords=awaitdb.getAllHealthRecords();constvaccinations=awaitdb.getAllVaccinations();returnpets.map(pet=>({id:pet.id,name:pet.name,breed:pet.breed,avatar:pet.avatar,diaryCount:diaries.filter(d=>d.petId===pet.id).length,healthRecordCount:healthRecords.filter(h=>h.petId===pet.id).length,vaccinationCount:vaccinations.filter(v=>v.petId===pet.id).length,lastDiaryDate:getLastDiaryDate(diaries,pet.id),lastHealthCheckDate:getLastHealthCheckDate(healthRecords,pet.id)}));}catch(error){console.error('计算宠物统计失败:',error);return[];}}// 获取最后一条日记的日期functiongetLastDiaryDate(diaries,petId){constpetDiaries=diaries.filter(d=>d.petId===petId);if(petDiaries.length===0)returnnull;returnpetDiaries.reduce((latest,current)=>newDate(current.date)>newDate(latest.date)?current:latest).date;}// 获取最后一次健康检查的日期functiongetLastHealthCheckDate(records,petId){constpetRecords=records.filter(r=>r.petId===petId);if(petRecords.length===0)returnnull;returnpetRecords.reduce((latest,current)=>newDate(current.date)>newDate(latest.date)?current:latest).date;}

这些函数处理宠物统计数据的计算。

// 渲染宠物统计页面asyncfunctionrenderPetStats(){constpetStats=awaitcalculatePetStatistics();consthtml=`<div class="pet-stats-container"> <div class="stats-header"> <h1>宠物统计</h1> </div> <div class="pet-stats-grid">${petStats.map(stat=>`<div class="pet-stat-card"> <div class="card-header"> <img src="${stat.avatar||'assets/default-pet.png'}" alt="${stat.name}" class="pet-avatar"> <div class="pet-info"> <h3>${stat.name}</h3> <p>${stat.breed}</p> </div> </div> <div class="stat-items"> <div class="stat-item"> <span class="label">日记数</span> <span class="value">${stat.diaryCount}</span> </div> <div class="stat-item"> <span class="label">健康记录</span> <span class="value">${stat.healthRecordCount}</span> </div> <div class="stat-item"> <span class="label">疫苗接种</span> <span class="value">${stat.vaccinationCount}</span> </div> </div> <div class="stat-dates">${stat.lastDiaryDate?`<p class="date-info">最后日记:${formatDate(stat.lastDiaryDate)}</p>`:''}${stat.lastHealthCheckDate?`<p class="date-info">最后检查:${formatDate(stat.lastHealthCheckDate)}</p>`:''}</div> <div class="card-actions"> <button class="btn-small" onclick="app.navigateTo('pet-profile',${stat.id})">详情</button> <button class="btn-small" onclick="viewPetDetailStats(${stat.id})">详细统计</button> </div> </div>`).join('')}</div> </div>`;document.getElementById('page-container').innerHTML=html;}// 查看宠物详细统计asyncfunctionviewPetDetailStats(petId){constpet=awaitdb.getPet(petId);constdiaries=awaitdb.getDiariesByPet(petId);consthealthRecords=awaitdb.getHealthRecords(petId);consthtml=`<div class="pet-detail-stats"> <h2>${pet.name}- 详细统计</h2> <div class="detail-charts"> <div class="chart-container"> <h3>日记分布</h3> <canvas id="diary-distribution"></canvas> </div> <div class="chart-container"> <h3>健康记录趋势</h3> <canvas id="health-trend"></canvas> </div> </div> </div>`;document.getElementById('page-container').innerHTML+=html;}

这个渲染函数生成了宠物统计界面,显示每只宠物的统计卡片。

🔌 原生代码实现

// PetStatsPlugin.ets - 宠物统计原生插件 import { fileIo } from '@kit.BasicServicesKit'; @Entry @Component struct PetStatsPlugin { // 生成宠物统计报告 generatePetReport(petData: string, callback: (path: string) => void): void { try { const pet = JSON.parse(petData); const report = ` 宠物统计报告 ============ 宠物名称: ${pet.name} 品种: ${pet.breed} 日记数: ${pet.diaryCount} 健康记录: ${pet.healthRecordCount} 疫苗接种: ${pet.vaccinationCount} 生成时间: ${new Date().toISOString()} `; const reportPath = `/data/reports/pet_${pet.id}_stats_${Date.now()}.txt`; const file = fileIo.openSync(reportPath, fileIo.OpenMode.CREATE | fileIo.OpenMode.WRITE); fileIo.writeSync(file.fd, report); fileIo.closeSync(file.fd); callback(reportPath); } catch (error) { console.error('[PetStatsPlugin] 生成报告失败:', error); callback(''); } } build() { Column() { Web({ src: 'resource://rawfile/www/index.html', controller: new WebviewController() }) } } }

这个原生插件提供了宠物统计报告生成功能。

Web-Native通信代码

// 生成宠物统计报告functiongenerateNativePetReport(petData){returnnewPromise((resolve,reject)=>{cordova.exec((path)=>{if(path){showSuccess(`报告已生成:${path}`);resolve(path);}else{reject(newError('生成失败'));}},(error)=>{console.error('生成失败:',error);reject(error);},'PetStatsPlugin','generatePetReport',[JSON.stringify(petData)]);});}

这段代码展示了如何通过Cordova调用原生的报告生成功能。

📝 总结

宠物统计模块展示了Cordova与OpenHarmony在宠物数据分析方面的应用。在Web层,我们实现了灵活的宠物统计展示。在原生层,我们提供了报告生成功能。

通过宠物统计,用户可以了解每只宠物的相关数据。通过详细统计,用户可以深入分析宠物的情况。通过Web-Native通信,我们能够充分利用OpenHarmony的文件系统能力,为用户提供完整的宠物统计体验。

在实际开发中,建议实现宠物对比功能,提供更多的统计维度,并支持统计数据的导出。

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/4/23 15:24:02

VMDE虚拟机检测终极指南:快速上手识别虚拟环境

VMDE&#xff08;Virtual Machines Detection Enhanced&#xff09;是一款源自学术研究的专业虚拟机检测工具&#xff0c;能够精准识别系统是否运行在虚拟机环境中。无论你是安全研究人员、系统管理员还是普通用户&#xff0c;掌握VMDE的使用都能帮助你更好地了解当前系统的运行…

作者头像 李华
网站建设 2026/4/20 9:52:53

LangFlow中的广告文案生成:高转化率内容批量产出

LangFlow中的广告文案生成&#xff1a;高转化率内容批量产出 在数字营销的战场上&#xff0c;一条精准、抓人的广告文案&#xff0c;可能就是转化率翻倍的关键。但现实是&#xff0c;企业每天要为成百上千个商品、活动、渠道准备不同的文案&#xff0c;靠人工撰写不仅耗时耗力&…

作者头像 李华
网站建设 2026/4/23 11:54:10

设置中心-Cordovaopenharmony统一配置入口

一、功能概述 应用的各种配置项&#xff08;如单位选择、提醒时间、数据保留期限等&#xff09;需要一个统一的管理入口。"设置中心"模块提供了一个集中的配置界面&#xff0c;让用户可以方便地调整应用行为。本篇文章围绕"设置中心"展开&#xff0c;介绍如…

作者头像 李华
网站建设 2026/4/22 12:57:36

LangFlow中的FAQ自动回答器:企业知识库高效利用

LangFlow中的FAQ自动回答器&#xff1a;企业知识库高效利用 在企业日常运营中&#xff0c;员工和客户常常面临大量重复性问题的咨询——“年假怎么申请&#xff1f;”、“报销流程是什么&#xff1f;”、“产品常见故障如何处理&#xff1f;”……这些问题虽然简单&#xff0c;…

作者头像 李华
网站建设 2026/4/24 8:46:02

Topit终极Mac窗口置顶工具:彻底告别窗口遮挡烦恼

Topit终极Mac窗口置顶工具&#xff1a;彻底告别窗口遮挡烦恼 【免费下载链接】Topit Pin any window to the top of your screen / 在Mac上将你的任何窗口强制置顶 项目地址: https://gitcode.com/gh_mirrors/to/Topit 在当今多任务并行的数字工作环境中&#xff0c;Mac…

作者头像 李华