鸿蒙Harmony-UIAbility内状态-LocalStorage详细介绍

鸿蒙Harmony-UIAbility内状态-LocalStorage详细介绍

1.1 Localstorage的概念

LocalStorage是页面级的UI状态存储,通过@Entry装饰器接收的参数可以在页面内共享同一个LocalStorage实例,LocalStorage也可以在UIAbility内,页面间共享状态

1.2 LocalStorage单个页面的使用方法

1.2.1 单个页面的数据状态存储方法

  1. 准备一个共享数据,键值对的方式存储

  2. 创建LocalStorage实例:const storage = new LocalStorage({key:value})

  3. 单向 @LocalStorageProp('user')组件内可变

  4. 双向 #LocalStorageLink('user')全局均可变

1.2.2 案例演示

  1. 准备共享数据
ts 复制代码
const data:Record<string,string> = {
  'uname':'公孙离',
  'age':'18'
}
  1. 创建一个storage实例
ts 复制代码
const storage = new LocalStorage(data)
  1. 使用共享数据库
ts 复制代码
1.@Entry(storage)
//表示我要从共享数据库中取出uname字段   具体需要取出什么字段根据自己需求即可
 @LocalStorageLink('uname')
 //给取出的字段取一个别名,需要赋初始值。因为可能拿不到
  message: string = ''
  1. 具体代码实现
ts 复制代码
const data:Record<string,string> = {
  'uname':'公孙离',
  'age':'18'
}
const storage = new LocalStorage(data)
@Entry(storage)
@Component
struct TestLocalStorage03 {
  @LocalStorageLink('uname')
  message:string = ''

  build() {
   Column() {
  Text(this.message)
     Button('改变父组件的信息')
       .onClick(()=>{
         this.message = '孙尚香'
       })
     child001()
    }
    .height('100%')
    .width('100%')
  }
}

@Component
struct child001 {
  @LocalStorageLink('uname')
  message:string = ''
  build() {
    Column(){
      Text('-------------------------------------------')

      Text(this.message)
      Button('改变子组件的状态')
        .onClick(()=>{
          this.message = '西施'
        })
    }
  }
}

1.2.3 效果展示

1.3 LocalStorage多个页面共享UIAbility的使用方法

1.3.1 多个页面的使用方法

  1. 依旧是准备共享数据,放置在设置当前应用的加载页面(UIAbility共享),只要是当前windowstage内的界面,都可以共享这份数据
  2. 在设置应用的加载页面创建storage实例
  3. 通过LocalStorage里面的方法getShared获取数据

1.3.2 案例演示

  1. 准备数据
ts 复制代码
  const data:Record<string,string> = {
      'uname':'公孙离',
      'age':'18',
    }
    const storage = new LocalStorage(data)
  1. 创建storage实例,将storage传递给页面
ts 复制代码
    1.const storage = new LocalStorage(data)
    2.  windowStage.loadContent('pages/10/TestLocalStorage03',storage);
  1. 接收数据
ts 复制代码
const storage = LocalStorage.getShared()
//其他步骤同单个页面传输吗,这里就不再叙述
  1. 完整代码展示
  • UIAbility内代码
ts 复制代码
  onWindowStageCreate(windowStage: window.WindowStage): void {
    const data:Record<string,string> = {
      'uname':'公孙离',
      'age':'18',
    }
    const storage = new LocalStorage(data)
    // //只要是当前windowStage内的界面,都可以共享这份数据
    windowStage.loadContent('pages/10/TestLocalStorage03',storage);
  }
  • 页面1
ts 复制代码
// const data:Record<string,string> = {
import { router } from '@kit.ArkUI'

//   'uname':'公孙离',
//   'age':'18'
// }
const storage = LocalStorage.getShared()

@Entry(storage)
@Component
struct TestLocalStorage03 {
  @LocalStorageLink('uname')
  message: string = ''

  build() {
    Column() {
      Text(this.message)
      Button('改变父组件的信息')
        .onClick(() => {
          this.message = '孙尚香'
        })
      child001()

    }
    .height('100%')
    .width('100%')
  }
}

@Component
struct child001 {
  @LocalStorageLink('uname')
  message: string = ''

  build() {
    Column() {
      Text('-------------------------------------------')

      Text(this.message)
      Button('改变子组件的状态')
        .onClick(() => {
          this.message = '西施'
        })
      Button('切换页面')
        .onClick(() => {
          router.pushUrl({
            url: 'pages/10/TextLocalStorage2'
          })
        })
    }
  }
}
  • 页面2
ts 复制代码
import { router } from '@kit.ArkUI'

const storage = LocalStorage.getShared()
@Entry(storage)
@Component
struct TextLocalStorage2 {
  @LocalStorageLink('uname')
  message: string = ''

  build() {
    Column() {
      Text(this.message)
      Button('改变信息')
        .onClick(()=>{
          this.message = '刘备'
        })

      Button('back')
        .onClick(()=>{
          router.back()
        })
    }
    .height('100%')
    .width('100%')
  }
}

1.3.3 效果展示

相关推荐
最爱老式锅包肉44 分钟前
HarmonyOS技术精讲-Camera Kit(相机服务)第8篇:曝光控制深入解析
数码相机·华为·harmonyos
Helen_cai2 小时前
OpenHarmony 路由封装 RouterUtil 页面跳转统一管理(API Version23+)
运维·服务器·nginx·华为·harmonyos
爸爸6192 小时前
鸿蒙应用开发实战【08】— AppStorage 全局状态与跨页面通信
ubuntu·华为·harmonyos·鸿蒙系统
ldsweet2 小时前
HarmonyOS技术精讲-剪贴板服务:进阶技巧与延迟粘贴
华为·harmonyos
一缕清烟在人间2 小时前
鸿蒙应用开发实战【27】— DatabaseService 数据库初始化
javascript·数据库·harmonyos·鸿蒙系统
拥抱太阳06162 小时前
HarmonyOS 应用开发《掌上英语》第13篇:面向对象 vs 函数式:ArkTS 中的编程范式选择
harmonyos
全堆鸿蒙2 小时前
鸿蒙应用开发实战【34】— 批量操作:batchUpdateStatus 与 deleteMany
华为·harmonyos·鸿蒙系统
解局易否结局3 小时前
鸿蒙 PC 应用开发实战:多显示器、显示密度与跨屏适配
华为·计算机外设·harmonyos
贾伟康3 小时前
【安心陪诊 Agent v1.1】首页可信设计实战:HTML/CSS 状态卡与急症分流
css·html·harmonyos·ai agent·首页设计
春卷同学4 小时前
HarmonyOS掌上记账APP开发实践第16篇:Worker 多线程与异步编程 — ArkTS 并发方案在记账应用中的实践
harmonyos