HarmonyOS 应用开发之UIAbility组件与UI的数据同步

基于当前的应用模型,可以通过以下几种方式来实现UIAbility组件与UI之间的数据同步。

  • 使用EventHub进行数据通信:在基类Context中提供了EventHub对象,可以通过发布订阅方式来实现事件的传递。在事件传递前,订阅者需要先进行订阅,当发布者发布事件时,订阅者将接收到事件并进行相应处理。
  • 使用AppStorage/LocalStorage进行数据同步:ArkUI提供了AppStorage和LocalStorage两种应用级别的状态管理方案,可用于实现应用级别和UIAbility级别的数据同步。

使用EventHub进行数据通信

EventHub为UIAbility组件提供了事件机制,使它们能够进行订阅、取消订阅和触发事件等数据通信能力。

在基类Context中,提供了EventHub对象,可用于在UIAbility组件实例内通信。使用EventHub实现UIAbility与UI之间的数据通信需要先获取EventHub对象,本章节将以此为例进行说明。

  1. 在UIAbility中调用eventHub.on()方法注册一个自定义事件"event1",eventHub.on()有如下两种调用方式,使用其中一种即可。

    import hilog from '@ohos.hilog';
    import UIAbility from '@ohos.app.ability.UIAbility';
    import type window from '@ohos.window';
    import type { Context } from '@ohos.abilityAccessCtrl';
    import Want from '@ohos.app.ability.Want'
    import type AbilityConstant from '@ohos.app.ability.AbilityConstant';

    const DOMAIN_NUMBER: number = 0xFF00;
    const TAG: string = '[EventAbility]';

    export default class EntryAbility extends UIAbility {

    onCreate(want: Want, launchParam: AbilityConstant.LaunchParam): void {
    // 获取UIAbility实例的上下文
    let context = this.context;
    // 获取eventHub
    let eventhub = this.context.eventHub;
    // 执行订阅操作
    eventhub.on('event1', this.eventFunc);
    eventhub.on('event1', (data: string) => {
    // 触发事件,完成相应的业务操作
    });
    hilog.info(DOMAIN_NUMBER, TAG, '%{public}s', 'Ability onCreate');
    }

     // ...
    

    eventFunc(argOne: Context, argTwo: Context): void {
    hilog.info(DOMAIN_NUMBER, TAG, '1. ' + ${argOne}, ${argTwo});
    return;
    }
    }

  2. 在UI中通过 eventHub.emit() 方法触发该事件,在触发事件的同时,根据需要传入参数信息。

    import common from '@ohos.app.ability.common';
    import promptAction from '@ohos.promptAction'

    @Entry
    @Component
    struct Page_EventHub {

    private context = getContext(this) as common.UIAbilityContext;

    eventHubFunc() : void {
    // 不带参数触发自定义"event1"事件
    this.context.eventHub.emit('event1');
    // 带1个参数触发自定义"event1"事件
    this.context.eventHub.emit('event1', 1);
    // 带2个参数触发自定义"event1"事件
    this.context.eventHub.emit('event1', 2, 'test');
    // 开发者可以根据实际的业务场景设计事件传递的参数
    }

    build() {
    Column() {
    Row() {
    Flex({ justifyContent: FlexAlign.Start, alignContent: FlexAlign.Center }) {
    Text(r('app.string.DataSynchronization')) .fontSize(24) .fontWeight(700) .textAlign(TextAlign.Start) .margin({ top: 12 , bottom: 11 , right: 24 , left: 24}) } } .width('100%') .height(56) .justifyContent(FlexAlign.Start) .backgroundColor(r('app.color.backGrounding'))

       List({ initialIndex: 0 }) {
         ListItem() {
           Row() {
             Row(){
               Text($r('app.string.EventHubFuncA'))
                 .textAlign(TextAlign.Start)
                 .fontWeight(500)
                 .margin({ top: 13, bottom: 13, left: 0, right: 8 })
                 .fontSize(16)
                 .width(232)
                 .height(22)
                 .fontColor($r('app.color.text_color'))
             }
             .height(48)
             .width('100%')
             .borderRadius(24)
             .margin({ top: 4, bottom: 4, left: 12, right: 12 })
           }
           .onClick(() => {
             this.eventHubFunc();
             promptAction.showToast({
               message: $r('app.string.EventHubFuncA')
             });
           })
         }
         .height(56)
         .backgroundColor($r('app.color.start_window_background'))
         .borderRadius(24)
         .margin({ top: 8, right: 12, left: 12 })
    
         ListItem() {
           Row() {
             Row(){
               Text($r('app.string.EventHubFuncB'))
                 .textAlign(TextAlign.Start)
                 .fontWeight(500)
                 .margin({ top: 13, bottom: 13, left: 0, right: 8 })
                 .fontSize(16)
                 .width(232)
                 .height(22)
                 .fontColor($r('app.color.text_color'))
             }
             .height(48)
             .width('100%')
             .borderRadius(24)
             .margin({ top: 4, bottom: 4, left: 12, right: 12 })
           }
           .onClick(() => {
             this.context.eventHub.off('event1');
             promptAction.showToast({
               message: $r('app.string.EventHubFuncB')
             });
           })
         }
         .height(56)
         .backgroundColor($r('app.color.start_window_background'))
         .borderRadius(24)
         .margin({ top: 12, right: 12, left: 12 })
       }
       .height('100%')
       .backgroundColor($r('app.color.backGrounding'))
     }
     .width('100%')
     .margin({ top: 8 })
     .backgroundColor($r('app.color.backGrounding'))
    

    }
    }

  3. 在UIAbility的注册事件回调中可以得到对应的触发事件结果,运行日志结果如下所示。

    [Example].[Entry].[EntryAbility] 1. []
    [Example].[Entry].[EntryAbility] 1. [1]
    [Example].[Entry].[EntryAbility] 1. [2,"test"]

  4. 在自定义事件"event1"使用完成后,可以根据需要调用 eventHub.off() 方法取消该事件的订阅。

    // context为UIAbility实例的AbilityContext
    this.context.eventHub.off('event1');

使用AppStorage/LocalStorage进行数据同步

ArkUI提供了AppStorage和LocalStorage两种应用级别的状态管理方案,可用于实现应用级别和UIAbility级别的数据同步。使用这些方案可以方便地管理应用状态,提高应用性能和用户体验。其中,AppStorage是一个全局的状态管理器,适用于多个UIAbility共享同一状态数据的情况;而LocalStorage则是一个局部的状态管理器,适用于单个UIAbility内部使用的状态数据。通过这两种方案,开发者可以更加灵活地控制应用状态,提高应用的可维护性和可扩展性。详细请参见 应用级变量的状态管理 。

为了能让大家更好的学习鸿蒙(HarmonyOS NEXT)开发技术,这边特意整理了《鸿蒙开发学习手册》(共计890页),希望对大家有所帮助:https://qr21.cn/FV7h05

《鸿蒙开发学习手册》:

如何快速入门:https://qr21.cn/FV7h05

  1. 基本概念
  2. 构建第一个ArkTS应用
  3. ......

开发基础知识:https://qr21.cn/FV7h05

  1. 应用基础知识
  2. 配置文件
  3. 应用数据管理
  4. 应用安全管理
  5. 应用隐私保护
  6. 三方应用调用管控机制
  7. 资源分类与访问
  8. 学习ArkTS语言
  9. ......

基于ArkTS 开发:https://qr21.cn/FV7h05

  1. Ability开发
  2. UI开发
  3. 公共事件与通知
  4. 窗口管理
  5. 媒体
  6. 安全
  7. 网络与链接
  8. 电话服务
  9. 数据管理
  10. 后台任务(Background Task)管理
  11. 设备管理
  12. 设备使用信息统计
  13. DFX
  14. 国际化开发
  15. 折叠屏系列
  16. ......

鸿蒙开发面试真题(含参考答案):https://qr18.cn/F781PH

鸿蒙开发面试大盘集篇(共计319页):https://qr18.cn/F781PH

1.项目开发必备面试题

2.性能优化方向

3.架构方向

4.鸿蒙开发系统底层方向

5.鸿蒙音视频开发方向

6.鸿蒙车载开发方向

7.鸿蒙南向开发方向

相关推荐
OH五星上将2 小时前
OpenHarmony(鸿蒙南向开发)——小型系统内核(LiteOS-A)【内核通信机制】下
harmonyos·openharmony·鸿蒙开发·liteos-a·鸿蒙内核·子系统·内核通信
让开,我要吃人了2 小时前
HarmonyOS开发实战(5.0)实现二楼上划进入首页效果详解
前端·华为·程序员·移动开发·harmonyos·鸿蒙·鸿蒙系统
小强在此2 小时前
基于开源鸿蒙(OpenHarmony)的【智能家居综合应用】系统
华为·开源·智能家居·团队开发·harmonyos
OH五星上将2 小时前
OpenHarmony(鸿蒙南向开发)——小型系统内核(LiteOS-A)【内核通信机制】上
linux·嵌入式硬件·harmonyos·openharmony·鸿蒙开发·liteos-a·鸿蒙内核
爱桥代码的程序媛2 小时前
鸿蒙OpenHarmony【轻量系统内核通信机制(互斥锁)】子系统开发
嵌入式硬件·harmonyos·鸿蒙·openharmony··鸿蒙开发·子系统开发
ImomoTo3 小时前
HarmonyOS学习(十三)——数据管理(二) 关系型数据库
数据库·学习·harmonyos·arkts·鸿蒙
江拥羡橙4 小时前
HarmonyOS应用开发者基础认证
华为·harmonyos
甜兒.4 小时前
鸿蒙小技巧
前端·华为·typescript·harmonyos
张帅涛_66610 小时前
HarmonyOS ArkUI 构建布局
华为·harmonyos
可惜已不在13 小时前
华为 HCIP-Datacom H12-821 题库 (25)
网络·华为