uni-app 数据缓存
uni.setStorage(OBJECT)
将数据存储在本地缓存中指定的key中,会覆盖掉原来该key对应的内容,这是一个异步接口。
OBJECT参数说明:
参数名 | 类型 | 必填 | 说明 |
key | String | 是 | 本地缓存中的指定的key |
data | Object/String | 是 | 需要存储的内容 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
setStorage:function(res){ uni.setStorage({ key: 'storage_key', data: 'hello', success: function(){ console.log('success'); } }) }
uni.setStorageSync(KEY,DATA)
将data存储在本地缓存中指定的key中,会覆盖掉原来该key对应的内容,这是一个同步接口。
参数说明:
参数 | 类型 | 必填 | 说明 |
key | Strig | 是 | 本地缓存中的指定的key |
data | Object/String | 是 | 需要存储的内容 |
同步方法需要使用 try{}catch(e){}
try{ uni.setStorageSync('storage_key','hello'); }catch(e){ }
uni.getStorage(OBJECT)
从本地缓存中异步获取指定key对应的内容
OBJECT参数说明
参数名 | 类型 | 必填 | 说明 |
key | String | 是 | 本地缓存中的指定的key |
success | Function | 是 | 接口调用的回调函数,res={data:key对应的内容} |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
uni.getStorage({ key: 'storage_key', success: function(res){ console.log(res.data); } });
uni.getStorageSync(KEY)
从本地缓存中同步获取指定key对应的内容
参数说明:
参数 | 类型 | 必填 | 说明 |
key | String | 是 | 本地缓存中的指定的key |
try{ const value=uni.getStorageSync('storage_key'); if(value){ console.log(value); } }catch(e){ }
uni.getStorageInfo(OBJECT)
异步获取当前storage的相关信息。
OBJECT参数说明:
参数名 | 类型 | 必填 | 说明 |
success | Function | 是 | 接口调用的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!