#鸿蒙通关秘籍#ArkUI中当前Ability的Storage怎么获取,有大佬分享下经验吗?

HarmonyOS
6天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
墨s诗篇RDBMS

可以的!ArkUI中获取当前Ability的Storage,你可以使用getStorage函数,它会提供存储访问的功能。 AppStorage.setOrCreate('storage', 'storages');

storage.get<string>('storage') // storages

let storage: LocalStorage = new LocalStorage();

storage.setOrCreate('storage','this is storage Set Value');

storage.get<string>('storage') // 'this is storage Set Value'

分享
微博
QQ
微信
回复
6天前
相关问题