您的位置:首页 > 游戏 > 游戏 > 鸿蒙语言基础类库:【@system.storage (数据存储)】

鸿蒙语言基础类库:【@system.storage (数据存储)】

2024/11/18 0:25:53 来源:https://blog.csdn.net/2301_76813281/article/details/140548815  浏览:    关键词:鸿蒙语言基础类库:【@system.storage (数据存储)】

数据存储

说明:

  • 从API Version 6开始,该模块不再维护,可以使用模块[@ohos.data.storage]。在API Version 9后,推荐使用新模块[@ohos.data.preferences]。
  • 本模块首批接口从API version 3开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

导入模块

import storage from '@system.storage';

storage.get

get(Object): void

通过索引读取缓存中存储的值。

系统能力: SystemCapability.DistributedDataManager.Preferences.Core

参数:

参数名类型必填说明
keystring内容索引。
defaultstringkey不存在则返回的默认值。
successFunction接口调用成功的回调函数,data为返回key对应的value。
failFunction接口调用失败的回调函数,data为错误信息,code为错误码。
completeFunction接口调用结束的回调函数。

示例:

export default {    storageGet() {        storage.get({            key: 'storage_key',            success: function(data) {                console.log('call storage.get success: ' + data);            },            fail: function(data, code) {                console.log('call storage.get fail, code: ' + code + ', data: ' + data);            },            complete: function() {                console.log('call complete');            },});    }
}

storage.set

set(Object): void

修改缓存中索引对应的值。

系统能力: SystemCapability.DistributedDataManager.Preferences.Core

参数:

参数名类型必填说明
keystring要修改的存储值的索引。
valuestring新值。长度需小于128字节。
successFunction接口调用成功的回调函数。
failFunction接口调用失败的回调函数,data为错误信息,code为错误码。
completeFunction接口调用结束的回调函数。

示例:

export default {    storageSet() {        storage.set({            key: 'storage_key',            value: 'storage value',            success: function() {                console.log('call storage.set success.');            },            fail: function(data, code) {                console.log('call storage.set fail, code: ' + code + ', data: ' + data);            },        });    }
}

storage.clear

clear(Object): void

清空缓存中存储的键值对。

系统能力: SystemCapability.DistributedDataManager.Preferences.Core

参数:

参数名类型必填说明
successFunction接口调用成功的回调函数。
failFunction接口调用失败的回调函数,data为错误信息,code为错误码。
completeFunction接口调用结束的回调函数。

示例:

export default {    storageClear() {        storage.clear({            success: function() {                console.log('call storage.clear success.');            },            fail: function(data, code) {                console.log('call storage.clear fail, code: ' + code + ', data: ' + data);            },        });    }
}

storage.delete

delete(Object): void

删除缓存中索引对应的键值对。

系统能力: SystemCapability.DistributedDataManager.Preferences.Core

参数:

参数名类型必填说明
keystring内容索引。
successFunction接口调用成功的回调函数。
failFunction接口调用失败的回调函数,data为错误信息,code为错误码。
completeFunction接口调用结束的回调函数。

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

示例:

export default {    storageDelete() {        storage.delete({            key: 'Storage1',            success: function() {                console.log('call storage.delete success.');            },            fail: function(data, code) {                console.log('call storage.delete fail, code: ' + code + ', data: ' + data);            },        });    }
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com