当前位置:   article > 正文

HarmonyOS-LocalStorage/AppStorage/PersistentStorage的基本用法(案例)_@storagelink

@storagelink

一、LocalStorage

LocalStorage是ArkTS为构建页面级别状态变量提供存储的内存内“数据库”。

(1)特点

1.LocalStorage实例可以在 "页面(一个页面)内" 共享

2.LocalStorage中的所有属性都是可变

3.@LocalStorageProp:@LocalStorageProp装饰的变量和与LocalStorage中给定属性建立 单向同步关系。状态变量修改不同步更新。

@LocalStorageLink:@LocalStorageLink装饰的变量和在@Component中创建与LocalStorage中给定属性建立 双向同步关系。状态变量修改同步更新。

4.类型必须被指定,且必须和LocalStorage中对应属性相同。不支持any,不允许使用undefined和null。

(2)用法

1.创建新实例并使用给定对象初始化:

     let storage = new LocalStorage({ 'PropA': 47 });

2.注入实例:

    @Entry(storage)

3. @LocalStorageLink变量装饰器声明新变量storLink1与LocalStorage中的'PropA'属性建立双向绑定:

    @LocalStorageLink('PropA') storLink1: number = 1;

(3)案例

  1. // 创建新实例并使用给定对象初始化
  2. let storage = new LocalStorage({ 'PropA': 47 });
  3. @Entry(storage) // 使LocalStorage可从@Component组件访问---注入实例
  4. @Component
  5. struct LocalStoragePage {
  6. // @LocalStorageLink变量装饰器声明新变量storLink1与LocalStorage中的'PropA'属性建立双向绑定
  7. @LocalStorageLink('PropA') storLink1: number = 1;
  8. build() {
  9. Column() {
  10. Text('-------LocalStorage-------').fontColor(Color.Red).fontSize(24)
  11. Text(`storLink1: ${this.storLink1}`).fontSize(20).fontWeight(600)
  12. .onClick(() => {
  13. this.storLink1++;
  14. })
  15. Button('修改')
  16. .onClick(() => {
  17. storage.set('PropA', 100)
  18. })
  19. ComA()
  20. }
  21. .width('100%').padding(20).justifyContent(FlexAlign.Start).alignItems(HorizontalAlign.Start)
  22. }
  23. }
  24. @Component
  25. struct ComA {
  26. build() {
  27. Column() {
  28. Text(`ComA`)
  29. ComB()
  30. }.justifyContent(FlexAlign.Start).alignItems(HorizontalAlign.Start)
  31. }
  32. }
  33. @Component
  34. struct ComB {
  35. @LocalStorageLink('PropA') storLink2: number = 1; //双向
  36. @LocalStorageProp('PropA') storLink3: number = 1; //单向
  37. build() {
  38. Column() {
  39. Text(`ComB_link: ${this.storLink2}`)
  40. .onClick(() => {
  41. this.storLink2 += 10
  42. })
  43. Text(`ComB_prop: ${this.storLink3}`)
  44. .onClick(() => {
  45. this.storLink3 += 10
  46. })
  47. }
  48. }
  49. }

二、AppStorage

(1)特点

1.AppStorage是应用级的全局状态共享

2.@StorageProp:单向同步:从AppStorage的对应属性到组件的状态变量。组件本地的修改是允许的,但是AppStorage中给定的属性一旦发生变化,将覆盖本地的修改。

   @StorageLink:双向同步:从AppStorage的对应属性到自定义组件,从自定义组件到AppStorage对应属性。

3.类型必须被指定,且必须和LocalStorage中对应属性相同。不支持any,不允许使用undefined和null。

(2)用法

1.创建新实例并使用给定对象初始化:

     AppStorage.SetOrCreate('PropA', 48);

2.注入实例:

    @Entry(storage)

3. @StorageLink变量装饰器声明新变量appLink1与AppStorage中的'PropA'属性建立双向绑定:

    @StorageLink('PropA') appLink1: number = 1;

(3)案例

  1. import router from '@ohos.router';
  2. // 全局
  3. AppStorage.SetOrCreate('PropA', 48);
  4. @Entry(storage) // 使LocalStorage可从@Component组件访问---注入实例
  5. @Component
  6. struct LocalStoragePage {
  7. @StorageLink('PropA') appLink1: number = 1;
  8. build() {
  9. Column() {
  10. Text('-------appStorage-------').fontColor(Color.Red).fontSize(24)
  11. Text(`storLink1: ${this.appLink1}`).fontSize(20).fontWeight(600)
  12. .onClick(() => {
  13. this.appLink1++;
  14. })
  15. Button('修改')
  16. .onClick(() => {
  17. AppStorage.SetOrCreate('PropA', 100)
  18. })
  19. Button('跳转')
  20. .onClick(() => {
  21. router.pushUrl({ url: 'pages/Index' })
  22. })
  23. }
  24. .width('100%').padding(20).justifyContent(FlexAlign.Start).alignItems(HorizontalAlign.Start)
  25. }
  26. }

pages/Index页面:

  1. //导入页面路由模块
  2. import router from '@ohos.router';
  3. @Entry
  4. @Component
  5. struct Index {
  6. // 全局
  7. @StorageLink('PropA') propa: number = 1;
  8. build() {
  9. Column() {
  10. Text(`appStorage: ${this.propa}`)
  11. .onClick(() => {
  12. this.propa++
  13. })
  14. Button('返回').onClick(()=>{
  15. router.back();
  16. })
  17. }
  18. .width('100%')
  19. }
  20. }

三、PersistentStorage

(1)特点

1.UI和业务逻辑不直接访问PersistentStorage中的属性,所有属性访问都是对AppStorage的访问,AppStorage中的更改会自动同步到PersistentStorage

2.PersistentStorage和AppStorage中的属性建立双向同步

3.限制条件:不支持嵌套对象(对象数组,对象的属性是对象等);不支持undefined 和 null 

4.PersistentStorage的持久化变量最好是小于2kb的数据

5.PersistentStorage只能在UI页面内使用,否则将无法持久化数据

(2)用法

1.初始化PersistentStorage属性,此时AppStorage中也生成一个Address属性

       PersistentStorage.PersistProp('Address', "");

2.在AppStorage获取对应属性

       AppStorage.Get('aProp');

或在组件内部定义:

       @StorageLink('Address') address: string = "";

(3)案例

  1. PersistentStorage.PersistProp('aProp', 47);
  2. @Entry
  3. @Component
  4. struct Index {
  5. @State message: string = 'Hello World'
  6. @StorageLink('aProp') aProp: number = 48
  7. build() {
  8. Row() {
  9. Column() {
  10. Text(this.message)
  11. // 应用退出时会保存当前结果。重新启动后,会显示上一次的保存结果
  12. Text(`${this.aProp}`)
  13. .onClick(() => {
  14. this.aProp += 1;
  15. })
  16. }
  17. }
  18. }
  19. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/863269
推荐阅读
相关标签
  

闽ICP备14008679号