获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
遇到同样的问题
scroll-view 组件在 enhanced 属性开启后在 iOS 13 上的 BUG// 伪代码 scroll-view enhanced="{{true}}" scroll-y="{{canScroll}}" data: { canScroll: true } attached(){ this.setData({canScroll: false}) setTimeOut(()=>{ this.setData({canScroll: true}) }) } 当 enhanced 开启时,切换 scroll-y 后即使 scroll-y 为 true 也无法滚动该 scroll-view 注意:此 BUG 仅在 iOS 13 上复现,iOS 14 上正常,Android 上正常。
2020-09-28