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

HarmonyOS
2024-12-06 13:18:31
浏览
收藏 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') // storage','this is storage Set Value
已于2024-12-18 10:32:02修改
分享
微博
QQ
微信
回复
2024-12-06 16:11:16
相关问题