小程序页面自动滚动到最下面

      

        

       

       

//开始滚动

   pageScrollToBottom () { 

    let that = this;

    var query = wx.createSelectorQuery();

    query.select('#sco').boundingClientRect(function (rect) {

      that.setData({

        height: rect.width + 'px'

      })

    }).exec();

    that.setData({

        toView:`msg-${that.data.recordsReal.length-1}`

    })

  },

 

//在发送成功时回调 pageScrollToBottom方法 ,

获取滚动dom的id  ,toView等于当前一条id的位置

你可能感兴趣的:(小程序)