时间:2019-05-03 来源:小程序工厂
牛***:
bindscrolltolower
A***:
bindscrolltolower这个事件是滑到底部的~不是滑动结束的~~
赵***:
你搞个定时器不就行了
bindscroll: function () {
clearTimeout(this.timeoutId);
this.timeoutId = setTimeout(function () {
this.setData({
name: "赵子龙"
});
delete this.timeoutId;
}.bind(this), 500);
}
Y***:
@赵子龙 稳
A***:
好的~谢谢@赵子龙
A***:系统记录