使用uniapp的时候遇到过类似问题,也是加载更多时会自动跳转到列表顶部。 我遇到的问题产生原因是srcoll-view标签有v-if,每次加载数据成功时v-if的false和true的切换会导致srcoll-view重新渲染,滚动条就会回到顶部。 试试去掉v-if的判断看会不会重现
scroll-view 追加数据会自动回到顶部,请问怎样解决?没有把数组值全部替换,是不断将数据追加push进数组。 基础库版本:2.10.3 const updateList = `tabs[${activeTab}].list[${page}]` const updatePage = `tabs[${activeTab}].page` this.setData({ [updateList]: res, [updatePage]: page + 1 }) <!-- 这是自定义组件的内部WXML结构 --> <scroll-view class="tab-content" enable-back-to-top="{{true}}" scroll-y="{{true}}" scroll-anchoring="{{true}}" lower-threshold="100" bindscrolltolower="updateGameList"> <view class="game-card-wrap" wx:for="{{gameListWrap}}" wx:for-item="gameList" wx:for-index="gameListIdx" wx:key="gameListIdx"> <view class="game-card" hover-class="hover-class" hover-start-time="100" wx:for="{{gameList}}" wx:for-item="game" wx:for-index="gameIdx" wx:key="gid"> </view> </view> </scroll-view>
2021-06-08