小程序
小游戏
企业微信
微信支付
扫描小程序码分享
that.toViewBottom(); //上面先滑动,下面再显示输入框
that.setData({
bottom_val: t.detail.height, //输入框高度
});
我想执行完页面向上滑动that.toViewBottom()后,再执行后面设置一个输入框的高度,可是滑动语句滑动时,好像使用了后面输入框的参数,怎么能让方法执行完再执行后面语句呢?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
toViewBottom 这个方法里面咋写的,有异步操作吗
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
toViewBottom: function (cb) { //使消息滑到最底端 这个组件内 #chatDataListBody 节点
var t = this;
wx.createSelectorQuery().select("#chatDataListBody").boundingClientRect(function (a) {
a && (wx.pageScrollTo({
scrollTop: a.height,
duration: duration //更新快慢时间
}), t.setData({
scrollTop: a.height - t.data.scrollTop,
}, () => {
cb && cb()
}));
}).exec();
},
这样试试
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
toViewBottom 这个方法里面咋写的,有异步操作吗
var t = this;
wx.createSelectorQuery().select("#chatDataListBody").boundingClientRect(function (a) {
a && (wx.pageScrollTo({
scrollTop: a.height,
duration: duration //更新快慢时间
}), t.setData({
scrollTop: a.height - t.data.scrollTop,
}));
}).exec();
},
toViewBottom: function (cb) { //使消息滑到最底端 这个组件内 #chatDataListBody 节点
var t = this;
wx.createSelectorQuery().select("#chatDataListBody").boundingClientRect(function (a) {
a && (wx.pageScrollTo({
scrollTop: a.height,
duration: duration //更新快慢时间
}), t.setData({
scrollTop: a.height - t.data.scrollTop,
}, () => {
cb && cb()
}));
}).exec();
},
这样试试