微信小程序本地缓存

微信小程序本地缓存

存入

1
wx.setStorageSync('id', 1111); //将id存入本地缓存

取出

1
var id = wx.getStorageSync('id');