获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
<scroll-view @touchend="touchend" @scroll="onScroll"></scroll-view> // js onScroll = debounce(function(event){ console.log('onScroll',this.isTouchEnd); if(this.isTouchEnd){ this.isTouchEnd = false } },500) touchend(){ this.isTouchEnd = true } // 滚动的时候就可以判断当前时候是滚动结束【基本的滑动除刁钻滚动】
怎样监听组件scroll-view滚动结束事件我要监听但scroll-view滚动结束后执行事件,比如我手指滑动一下停止滚动条后执行事件,求帮助?
2023-04-07