使用 ScrollViewContext.scrollTo 接口无效, 模拟器没有效果,真机是 IOS XR 14.4.2 .
IOS 添加了 duration 参数完全没有效果, 一动不动,去掉该参数,滚动了但有 bug.
安卓没有问题但是 duration 参数好像还是没起作用,我的使用方式不对吗?
const query = wx.createSelectorQuery();
query.select('#scroll-view').node();
query.select('#scroll-view').boundingClientRect();
query.exec(([{ node: scrollview }, { height }]) => {
console.log(height);
scrollview.scrollTo({ top: height, animated: true, duration: 3000 });
});
你那里不行吗,ios12 8.0.9是可以正常滚动的
请问有遇到node报错的吗
请问问题解决了吗,目前duration好像还是不起作用