uniapp 出现 Error in event handler for "service.requestComponentInfo" 错误的原因
getElmSize(el, inCom = false, obj = null) {
return new Promise(r => {
const query = inCom ? wx.createSelectorQuery().in(obj) : wx.createSelectorQuery();
query.select(el).boundingClientRect();
query.selectViewport().scrollOffset();
query.exec(function (res) {
r(res);
});
});
},
在 onLoad 里面用了 uni.createSelectorQuery() 查找要元素,导致找不到 handCenter 节点,因为元素还没有渲染出来,就开始查找元素,肯定会报错的。解决方案:在外面套一层 this.$nextTick(),或者放在 onReady 里面就好了。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论