createselectorQuery和createIntersectionObserver在wepy的使用

问题: 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)
})

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值