组件login.vue:
<button @click="test">login</button>
test(){
//...省略了请求
//期间用了数组concat、findIndex、find
uni.setStorage({
key: "token",
data: "123"
});
this.$u.toast("登录成功")
setTimeout(() => {
uni.reLaunch({
url: "/pages/index/index"
})
}, 200)
}
index.vue:
onLoad(){
let token = uni.getStorageSync("token");
if(token){
uni.reLaunch({
url: '/pages/login/login'
})
}
}
2 个回复
小小白啊 (作者)
1111
XINGHONG_
我测试是可以呢
小小白啊 (作者)
您好,请问也是11.4系统下吗?我在其他系统是没问题的。但是就有一个用户跳转不了...
2021-11-15 17:27