微信小程序scroll-view滑动结束监听

发布于 7 年前作者 junpan14855 次浏览最后编辑 7 年前来自 ask

如题,如何监听到scroll-view滑动结束?

1 回复
huangtao
huangtao1 楼5 年前

bindScroll: function (ev) {

        let _this = this;
 
        if (this.scrollEndTimer) {
            clearTimeout(this.scrollEndTimer);
            this.scrollEndTimer = null;
        }
 
        this.scrollEndTimer = setTimeout(function () {
            console.log(‘滑动结束’);
        }, 300);
        
    }

搞个定时器啊