在特定版本:iPhone13 iOS16.1.1中,小程序使用了CustomTabBar,并且wx.switchTab防抖500ms,快速切换Tab页面多次,小程序卡死无响应.使用原生Tab则没有此现象.
已复现场景的小程序:北面小程序,lululemon小程序,耐克小程序.
请问下:原因是什么?
JS:
debounce(() => {
wx.switchTab({ url: path })
})
WXML:
<block wx:for="{{tabBarConfig}}" wx:key="index">
<view class="tab-bar-item {{FILTER.isAnd(item.path === activePath, 'is-active')}}" data-item="{{item}}" bind:tap="onTabItemChange">
<view class="tab-item-image is-full">
<image class="item-image" src="{{FILTER.tabItemActive(item, activePath)}}" />
</view>
<view class="tab-item-text" wx:if="{{item.text}}">{{item.text}}</view>
</view>
</block>
你好,麻烦在手机微信那里上传下日志: 我->设置->帮助与反馈右上角有个上报日志的入口,麻烦提供一下微信号,时间点
请问这个问题解决了嘛
iOS17.2.1版本也出现这种情况 第2个自定义底部tab多次切换后会卡死