首页 > TAG信息列表 > setstorage
微信小程序——storage操作
storage storage 在微信小程序中的作用和 cookie 基本相同,可以用来存储信息,并在每次请求的时候进行读取。 异步操作:setstorage、getstorage 和 removestorage 同步操作:setstorageSync、getstorageSync 和 removestorageSync 区别 以Sync(同步,同时)结尾的都是都是同步缓uni-app(九)
数据缓存 uni.setStorage :存储数据的异步接口uni.getStorage :获取数据的异步接口uni.removeStorage :移除数据的异步接口 //template模板<view> <button type="primary" @click="setStorage">存储数据</button> <button type="default" @click=&qvue项目中使用storage本地存储封装
storage.js // 存储 const _setStorage = (key, value)=>{ sessionStorage.setItem(key, JSON.stringify(value)); } // 查找 const _getStorage = (key)=>{ return JSON.parse(sessionStorage.getItem(key)); } const _getForIndexStorage = (index)=>{ re应用(1)——同一页面调取data和示例:数据存储调用
1.同一页面获取data值 就在于var that和that.data.key Page({ data:{ key:'this is key' }, keyInput; function(e){ //给key的input一个bindinput,使输入时即触发keyInput,同步将输入的值传给js里的key this.setData({ key: e.detail.valwx.getStorage异步和wx.getStorageSync同步区别
参考: https://blog.csdn.net/weixin_42220533/article/details/84304170 1.wx.setStorage(wx.setStorageSync)、wx.getStorage(wx.getStorageSync)、wx.clearStorage(wx.clearStorageSync) 可以对本地缓存进行设置、获取和清理。本地缓存最大为10MB 2.localStorage 是永久存储微信小程序中怎么存setStorage
在js中存入setStorage,key是你的键,data是你的值 wx.setStorage({ key: 'mm', data: 1, }) // 获取getStorageSync的方式 console.log(wx.getStorageSync('mm')) #获取的方式 接下来是或数据中的存取 ,其实小程序使用本地存储
wx.setStorage({ string key, any data, function success, function fail, function complete }) 例如: wx.setStorage({ key:"key", data:"value" }) wx.setStorageSync(string key, any data)//同步 例如: wx.setStorageSync("key","valu