当前位置:   article > 正文

HarmonyOS应用开发:持久化数据管理_harmony persistentstorage 第二次打开 undefined

harmony persistentstorage 第二次打开 undefined

方舟开发框架通过PersistentStorage类提供了一些静态方法用来管理应用持久化数据,可以将特定标记的持久化数据链接到AppStorage中,并由AppStorage接口访问对应持久化数据,或者通过@StorageLink装饰器来访问对应key的变量。

方法参数说明返回值定义
PersistPropkey : string
defaultValue: T
void关联命名的属性在AppStorage变为持久化数据,赋值覆盖顺序如下:
- 首先,如果该属性存在于AppStorage,将Persistent中的数据复写为AppStorage中的属性值。
- 其次,Persistent中有此命名的属性,使用Persistent中的属性值
- 最后,以上条件均不满足,则使用defaultValue,不支持null和undefined。
DeletePropkey: stringvoid取消双向数据绑定,该属性值将从持久存储中删除。
PersistPropskeys: {
key: string,
defaultValue: any
}[]
void关联多个命名的属性绑定。
KeysvoidArray<string>返回所有持久化属性的标记。

 说明:

  • PersistProp接口使用时,需要保证输入对应的key应当在AppStorage存在。

  • DeleteProp接口使用时,只能对本次启动已经link过的数据生效。

  1. PersistentStorage.PersistProp("highScore", "0");
  2. @Entry
  3. @Component
  4. struct PersistentComponent {
  5. @StorageLink('highScore') highScore: string = '0'
  6. @State currentScore: number = 0
  7. build() {
  8. Column() {
  9. if (this.currentScore === Number(this.highScore)) {
  10. Text(`new highScore : ${this.highScore}`)
  11. }
  12. Button() {
  13. Text(`goal!, currentScore : ${this.currentScore}`)
  14. .fontSize(10)
  15. }.onClick(() => {
  16. this.currentScore++
  17. if (this.currentScore > Number(this.highScore)) {
  18. this.highScore = this.currentScore.toString()
  19. }
  20. })
  21. }
  22. }
  23. }

因为PersistentStorage和AppStorage的数据是双向绑定的,所以,对PersistentStorage的数据操作其实就是对AppStorage的数据进行操作,用AppStorage的接口来访问AppStorage(PersistentStorage),或者通过@StorageLink装饰器来访问对应key的变量,如

@StorageLink('highScore') highScore: string = '0'

第一个'highScore'是PersistentStorage里的key,第二个'highScore'是AppStorage里的key,一一对应。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/283684
推荐阅读
相关标签
  

闽ICP备14008679号