怎么使scroll-view自动滚动到最底部
发布于 6 年前 作者 liaochao 17285 次浏览 来自 问答

<scroll-view scroll-y=“true” style=“height:{{height}}rpx;background:#eef3f7” scroll-into-view=“bottom”>

        //这里要循环输出一些组件

    <view wx:for="{{chat_size}}" wx:for-item=“item”>
      <template is=“dialog_mode” data="{{…item}}"></template>
    </view>

    <view class=“bottom_view” id=“bottom”>
    </view>
    

</scroll-view>

试过scroll-into-view不可以。

回到顶部