鸿蒙学习-preferences封装

学习记录一下,封装preferences

preferences:用户首选项为应用提供Key-Value键值型的数据处理能力,支持应用持久化轻量级数据,并对其修改和查询。

数据存储形式为键值对,键的类型为字符串型,值的存储数据类型包括数字型、字符型、布尔型以及这3种类型的数组类型。

preferences有同步和异步操作两种方式,这里只封装了同步方法,大家可以参考使用

import preferences from '@ohos.data.preferences';
class SpUtil {
  sp: preferences.Preferences
  constructor() {
    let options: preferences.Options = { name: '自定义' };
    this.sp = preferences.getPreferencesSync(getContext(this), options)
  }

  put(key: string, value: preferences.ValueType) {
    this.sp.putSync(key, value)
    this.sp.flush()
  }

  get(key: string, defValue: preferences.ValueType) {
    return this.sp.getSync(key, defValue)
  }

  clearAll() {
    this.sp.clearSync()
    this.sp.flush()
  }
}

export default new SpUtil()

文件存储路径:/data/app/el2/100/base/包名/haps/entry/preferences/文件名

使用:

复制代码
let isFirst = SpUtil.get("isFirst", true) as boolean
相关推荐
小杨互联网21 分钟前
鸿蒙生态的认知和生态的崛起分析
华为·harmonyos
楚疏笃25 分钟前
鸿蒙学习基本概念
学习·华为·harmonyos
SophieBryant27 分钟前
鸿蒙实现 web 传值
前端·华为·harmonyos
谢道韫66627 分钟前
HarmonyOs DevEco Studio小技巧31--画布组件Canvas
华为·harmonyos
鸿蒙程序媛1 小时前
【鸿蒙开发】第十七章 Camera相机服务
harmonyos
网安加社区1 小时前
网安加·百家讲坛 | 仝辉:金融机构鸿蒙应用安全合规建设方案
安全·金融·harmonyos·鸿蒙
zhongcx011 小时前
鸿蒙NEXT自定义组件:太极Loading
华为·harmonyos·鸿蒙·鸿蒙next
伊二1 小时前
鸿蒙next ui安全区域适配(刘海屏、摄像头挖空等)
华为·harmonyos·鸿蒙·openharmony·团结引擎·huamony next
囬香豆1 小时前
鸿蒙生态下的安全隐私保护:打造用户信任的应用体验
安全·华为·harmonyos
鸿蒙开天组●1 小时前
鸿蒙进阶篇-Math、Date
华为·harmonyos