1***@qq.com
1***@qq.com
  • 发布:2022-01-06 21:54
  • 更新:2022-08-10 17:03
  • 阅读:719

#插件讨论# 【 swiper-sticky - DCloud前端团队 】组件代码uni.createSelectorQuery()的boundingClientRect方法无法回调

分类:uni-app
关联插件: swiper-sticky

1.组件在vue3模式下点击tab栏时报错

  1. 组件代码uni.createSelectorQuery()的boundingClientRect方法无法回调
// 因 nvue 暂不支持 class 查询  
        var queryTabSize = uni.createSelectorQuery().in(this);  
        for (var i = 0; i < this.tabList.length; i++) {  
          queryTabSize.select('#' + this.tabList[i].id).boundingClientRect();  
        }  
        queryTabSize.exec(rects => {  
            console.log(rects) // 没有执行这个打印  
          rects.forEach((rect) => {  
            this.tabListSize[rect.dataset.id] = rect;  
          })  
          this.updateIndicator(this.tabListSize[this.tabIndex].left, this.tabListSize[this.tabIndex].width);  
          this.switchTab(this.tabIndex);  
        });
2022-01-06 21:54 负责人:无 分享
已邀请:
iKun

iKun

我也遇到这个问题了,没有回调

该问题目前已经被锁定, 无法添加新回复