weex 使用中 uni.getStorage支持,但是不支持 uni.getStorageSync。有什么办法曲线实现。
- 发布:2018-11-23 16:26
- 更新:2018-11-23 16:35
- 阅读:2988
l***@qq.com (作者) - 码农
想封闭一个方法,判断用户是否登录,如果都是异步,则返回就成了问题。
例如
checkToken:function () {
this.accessToken = uni.getStorage('accessToken');
this.deviceId = uni.getStorage('deviceId');
if(this.accessToken.length>0&&this.deviceId.length>0) {
return true;
} else {
return false;
}
}
l***@qq.com (作者)
谢谢
2018-11-23 16:33
l***@qq.com (作者)
想封闭一个方法,判断用户是否登录,如果都是异步,则返回就成了问题。
例如
checkToken:function () {
this.accessToken = uni.getStorage('accessToken');
this.deviceId = uni.getStorage('deviceId');
if(this.accessToken.length>0&&this.deviceId.length>0) {
return true;
} else {
return false;
}
}
2018-11-23 16:37