ios scroll 有个滚动惯性,滚动停止后才会触发回调,之前做scroll滚动监听的时候遇到过这问题,算是官方的一个坑
通过相交 wx.createIntersectionObserver() 来判断通过相交来判断是否在可视区域内,页面滚动,苹果系统小程序不能时时监听变化,安卓的可以时时监听res返回的值,苹果的需要再滚动完停止了,才会返回res值 wx.createIntersectionObserver().relativeToViewport({ bottom: 100 }).observe('.select-area', (res) => { if (res.intersectionRect.bottom==0) { this.setData({ isfloat:true }) } else { this.setData({ isfloat: false }) } console.log(res) })
2021-12-01大佬们有没啥解决办法啊,球球你们了
安卓调用视频号预约弹窗api,会返回到跳转前页面,无法像ios在视频号中弹起wx.getChannelsLiveNoticeInfo({ finderUserName, success: (res)=>{ if(res.reservable && res.status == 0){ let noticeId = res.noticeId wx.reserveChannelsLive({ noticeId, }) } }, })
2021-11-23