uniapp 数据存储获取和删除(数据在缓存中,卸载会丢失)
Posted 地表最强菜鸡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp 数据存储获取和删除(数据在缓存中,卸载会丢失)相关的知识,希望对你有一定的参考价值。
最近项目中使用uni-app涉及到缓存的操作,特此记录便于日后查阅。
<template>
<view class="content">
<button type="primary" @click="setStorage">存储数据</button>
<button type="primary" @click="getStorage">获取数据</button>
<button type="primary" @click="delStorage">删除数据</button>
</view>
</template>
<script>
export default {
methods: {
setStorage() {
uni.setStorage({
key: 'name',
data: 'uniapp',
success() {
console.log('存储数据')
}
})
},
getStorage() {
uni.getStorage({
key: 'name',
success(res) {
console.log('获取成功', res.data)
}
})
},
delStorage() {
uni.removeStorage({
key: 'name',
success() {
console.log('删除成功')
}
})
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
注:如果是同步存储、获取、删除,可以使用setStorageSync()、getStorageSync、removeStorageSync(),达到的效果是一样的。
以上是关于uniapp 数据存储获取和删除(数据在缓存中,卸载会丢失)的主要内容,如果未能解决你的问题,请参考以下文章
uniapp数据缓存同步(setStorage)跟异步(setStorageSync)的区别