获取uni.setStorageSync存储
时间: 2023-11-29 08:04:11 浏览: 306
uniapp+vue3+pinia框架(模块化+持久化存储)
5星 · 资源好评率100%
调用uni.setStorageSync存储的数据可以通过uni.getStorageSync方法来获取。在代码中,可以使用以下方式获取uni.setStorageSync存储的数据:
```javascript
let res = uni.getStorageSync("username");
this.username = res;
console.log(res);
```
这样就可以获取到存储在"username"键下的数据,并将其赋值给this.username变量。
阅读全文