iOS17.2.1版本也出现这种情况 第2个自定义底部tab多次切换后会卡死
在iPhone13 iOS16.1.1中,CustomTabBar快速切换时,小程序卡死无法操作!在特定版本: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>
01-31