收藏
回答

scroll-view 滑动到底部

框架类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 scroll-view 客户端 6.6.5 1.5.4

打算想做一个聊天程序,增加了消息后, 怎么用程序控制scroll-view滑动到最底部?

回答关注问题邀请回答
收藏

5 个回答

  • sincere
    sincere
    2018-03-27

    解决了,感谢🙏

    2018-03-27
    有用
    回复
  • 0.0😪
    0.0😪
    2018-03-22

    <scroll-view class="scrool-view" style="height: {{ winHeight }}px" scroll-y="true" scroll-with-animation="true" scroll-into-view="{{ scrolltop }}" enable-back-to-top="true">


    </scroll-view>


    winHeight :

    wx.getSystemInfo({
          success(res) {
            that.setData({
              winHeight: res.windowHeight - 150,
            });
          },
        });


    scrolltop

    let ch = {
          'text': word,
          'time': new Date().getTime(),
          'orientation': orientation
        };
        chatListData.push(ch);
        wx.setStorageSync('chatList', chatListData);
        var charlenght = chatListData.length;
        that.setData({
          chatList: chatListData,
          scrolltop: "roll" + charlenght
        });

    @sincere 试试把!

    2018-03-22
    有用
    回复
  • sincere
    sincere
    2018-03-22

    请问解决了吗?

    2018-03-22
    有用
    回复
  • 0.0😪
    0.0😪
    2018-03-21

    @wxu 好的!

    2018-03-21
    有用
    回复
  • 旭良(倒纱,倒丝+收杂纱)
    旭良(倒纱,倒丝+收杂纱)
    2018-03-21

    wx.pageScrollTo试试这个

    https://mp.weixin.qq.com/debug/wxadoc/dev/api/scroll.html

    2018-03-21
    有用
    回复
登录 后发表内容