企业微信中,涉及getrunData微信运动。
只要在onshow中触发,就会碰到来回跳转微信和企业微信的问题。
需要在promse中处理或设置isBack,回来后再开启,解决不停跳问题。
onshow中请求微信运动,ios中就会触发 不仅限于uni、taro等
data:{
return {
isBack:false
}
}
onShow(){
...
if(!this.isBack) {
this.isBack=true;
// xxxxxx
success:()=>{
this.isBack=false
}
}
}
微信社区:
https://developers.weixin.qq.com/community/develop/doc/0004e88acf89500cd14cd3a3656000
网友评论