2024年HarmonyOS鸿蒙最全HarmonyOS 应用开发之UIAbility组件与UI的数据同步(3),大数据开发工程师面试题

img
img

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

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(KaTeX parse error: Expected 'EOF', got '}' at position 209: …: 24}) }̲ } …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://img-blog.csdnimg.cn/img_convert/afd6b98a09014e557566dec0fd065c41.webp?x-oss-process=image/format,png)


#### **开发基础知识:[`https://qr21.cn/FV7h05`]( )**


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


![](https://img-blog.csdnimg.cn/img_convert/c02d1bcf9201e3d3d8baf3b812f8e370.webp?x-oss-process=image/format,png)


#### **基于ArkTS 开发:[`https://qr21.cn/FV7h05`]( )**


1. Ability开发
2. UI开发
3. 公共事件与通知
4. 窗口管理
5. 媒体
6. 安全
7. 网络与链接
8. 电话服务
9. 数据管理


**深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!**

![](https://img-blog.csdnimg.cn/direct/743b668910224b259a5ffe804fa6d0db.png)
![img](https://img-blog.csdnimg.cn/img_convert/35f652ec39e136f131edbf2b55dcd87e.png)
![img](https://img-blog.csdnimg.cn/img_convert/9fd150615fc0bd96521530fb2af4fde1.png)

**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上鸿蒙开发知识点,真正体系化!**

**由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新**

**[需要这份系统化的资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618636735)**

有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上鸿蒙开发知识点,真正体系化!**

**由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新**

**[需要这份系统化的资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618636735)**

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值