本文属于无知型,慎看
user: {
userid: 0,//用户ID
sessionid: "",//秘钥
openId: "", // openid
jzb: 0,
exp: 0,
phone: "",
levels: 0,
headimg: "",
code: "",
key: "userkey",
setCache: function (obj) {
wx.setStorageSync(this.key, obj);
},
getCache: function () {
return wx.getStorageSync(this.key);
},
clear: function () {
wx.removeStorageSync(this.key);
}
},
这样就有了一个全局存储的方便的发方法
/**
* 是否登录
*/
function isLogin() {
// return true;
var obj = wx.getStorageSync("userkey");
if (obj != null) {
console.log(obj)
return true;
}else{
console.log("no")
return false;
}
}
这样就可以自由使用
以前着实没发现。
网友评论