#鸿蒙通关秘籍# 如何在HarmonyOS NEXT中使用本地存储?

HarmonyOS
2024-11-22 15:30:32
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
系统小魔头

在HarmonyOS NEXT中,可以使用本地存储API(如Preferences)保存用户数据,例如用户设置或偏好:

// SetFontSizePage.ets
build() {
    Row() {
        Slider({
            // ...
        }).onChange(async (value: number) => {
            // 保存当前进度值
            if (this.changeFontSize === 0) {
                this.fontSizeText = `SetViewModel.getTextByFontSize(value)`;
                return;
            }
            this.changeFontSize = (value === `CommonConstants.SET_SLIDER_MAX` ? `CommonConstants.SET_SIZE_HUGE` : value);
            this.fontSizeText = `SetViewModel.getTextByFontSize(this.changeFontSize)`;
            let myPreferences: preferences.Preferences | null = null;
            preferences.getPreferences(getContext(this), 'myStore').then((object: preferences.Preferences) => {
                myPreferences = object;
                myPreferences.put(`KEY_APP_FONT_SIZE`, this.changeFontSize).then(() => {
                    myPreferences?.flush();
                });
            })
        })
    }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.

在这个示例中,我们保存了字体大小的设置到首选项中。这种方式使得应用能够持久化存储用户设置过的信息,提高用户体验。

分享
微博
QQ
微信
回复
2024-11-22 16:55:25
相关问题