收藏
回答

有办法监听scroll-view滑动结束吗?求大神指教~~~

scroll-view有个bindscroll事件但是在这个事件里面setData会造成页面一直刷~~有办法监听scroll-view滑动结束后再setData吗?

回答关注问题邀请回答
收藏

5 个回答

  • Amanda
    Amanda
    2017-10-12

    好的~谢谢@赵子龙

    2017-10-12
    有用
    回复
  • You can you up
    You can you up
    2017-10-12

    @赵子龙    稳

    2017-10-12
    有用
    回复
  • 赵青山
    赵青山
    2017-10-12

        你搞个定时器不就行了

    bindscroll: function () {

        clearTimeout(this.timeoutId);

        this.timeoutId = setTimeout(function () {

            this.setData({

                name: "赵子龙"

            });

            delete this.timeoutId;

        }.bind(this), 500);

    }


    2017-10-12
    有用
    回复
  • Amanda
    Amanda
    2017-10-12

    bindscrolltolower这个事件是滑到底部的~不是滑动结束的~~

    2017-10-12
    有用
    回复
  • 牛
    2017-10-12

    bindscrolltolower

    2017-10-12
    有用
    回复
登录 后发表内容