问题: createIntersectionObserver使用报错
1. 小程序的AP地址:小程序API地址
2.这边说明文档说明:
在这里要说明this的问题了,在wepy中:this 拿到是是 wepy 实例, this.$wx 才是小程序的实例
所以在wepy中的使用应该是如下:
this.$wx.createIntersectionObserver().relativeToViewport({bottom: 100}).observe('.target-class', (res) => {
res.intersectionRatio // 相交区域占目标节点的布局区域的比例
res.intersectionRect // 相交区域
res.intersectionRect.left // 相交区域的左边界坐标
res.intersectionRect.top // 相交区域的上边界坐标
res.intersectionRect.width // 相交区域的宽度
res.intersectionRect.height // 相交区域的高度
})
问题: 在子组件获取query相关信息不准确或者取不到
解决方法:
let query = wx.createSelectorQuery().in(this.$wx)
let _this = this
console.log(query.select)
query.select('#move-box').boundingClientRect(function (rect) {
console.log(rect)
_this.maxWidth = rect.width
console.log(_this.maxWidth)
}).exec(res => {
console.log(res)
})