有人遇到过ios端底部tabbar的中间按钮uni.onTabBarMidButtonTap 方法点击无效的情况吗
6***@qq.com
- 发布:2022-08-01 09:58
- 更新:2022-08-01 10:15
- 阅读:741
6***@qq.com (作者)
onLaunch() {
const _this = this;
console.log('App onLaunch');
/**
* tabbar按钮点击事件
*/
uni.onTabBarMidButtonTap(() => {
console.log('11111====');
let _this = this;
let personalInfo = _this.getUserInfo();
if (!_this.isLogin) {
uni.showToast({
title: '请先登录!',
icon: 'none',
duration: 1000,
success() {
setTimeout(() => {
uni.switchTab({
url: '/pages/personal-center/personal-center/personal-center'
})
}, 1000)
}
})
return;
}
console.log(personalInfo);
});
},
6***@qq.com (作者)
代码贴出来了,大抵就是这样
2022-08-01 10:16
6***@qq.com (作者)
而且这个点击无效也不是一直都存在,以前打包或者调试的ios版本是正常能用的,但是最近测试的版本又无效了
2022-08-01 10:18