https://developers.weixin.qq.com/miniprogram/dev/component/scroll-view.html
<scroll-view
id="scrollview"
style="{{ style }}"
enhanced="{{true}}"
bounces="{{false}}"
class="{{ classes.scrollView }}"
scroll-y="{{!refreshing}}"
bindscroll="scrollViewScrollHandler"
catchtouchmove="{{ refreshing ? 'noop' : '' }}"
bindtouchstart="{{ disablePulling ? 'noop': 'onTouchStart' }}"
capture-bind:touchmove="{{ disablePulling ? 'noop' : 'onTouchMove' }}"
bindtouchend="{{ disablePulling ? 'noop': 'onTouchEnd' }}"
>
enhanced: 配置无效
bounces: iOS 下 scroll-view 边界弹性控制 (同时开启 enhanced 属性后生效) 此选项配置false在IOS 里面关闭不了, 无法禁用掉弹性功能,
IOS 15, iphone 12
最后怎么解决的啊
请问scroll-view在ios下的橡皮筋问题解决了吗?我也是用了这两个属性没有效果。