小程序聊天对话,每次都显示最新消息(让页面自动滚动到底部)

//页面自动滚动到底部
    pageScrollToBottom:function(){
        wx.createSelectorQuery().select('#scrollpage').boundingClientRect(function(rect){
            // console.log(rect.height);
            wx.pageScrollTo({
                scrollTop: rect.height,
            });
        }).exec()
    },

官方API:https://developers.weixin.qq.com/miniprogram/dev/api/ui/scroll/wx.pageScrollTo.html

然后在页面显示、有新的数据时调用该方法即可。

你可能感兴趣的:(微信小程序,前端)