你的是Taro3,和微信小程序的有点不一样 Taro.createSelectorQuery().select('#ceilingBar').boundingClientRect(function(rects){console.log("此处可以获取到节点")}).exec() 这个NodesRef.boundingClientRect()回调中如果没有获取到节点,可能是调用此方法的生命周期不是 onReady 或者 ready Taro3 : 一定要在 onReady、ready 生命周期中才能调用小程序 API 获取 DOM。 不需要调用 .in(this) 方法。 https://taro-docs.jd.com/taro/docs/taroize-troubleshooting/#4-selectorquery-api-%E8%8E%B7%E5%8F%96%E4%B8%8D%E5%88%B0-dom 微信小程序: SelectorQuery SelectorQuery.in(Component component) 将选择器的选取范围更改为自定义组件 component 内。(初始时,选择器仅选取页面范围的节点,不会选取任何自定义组件中的节点)。 https://developers.weixin.qq.com/miniprogram/dev/api/wxml/SelectorQuery.in.html
在自定义组件中createSelectorQuery获取不到节点?t调试基础库:2.17.0 s使用框架:taro3.0 d代码及报错如下: [图片][图片]报错提示:An SelectorQuery call is ignored because no proper page or component is found. Please considering using `SelectorQuery.in` to specify a proper one.
2021-12-22