小程序自定义组件获取wxml节点问题
昨天到现在一直遇到获取wxml节点为空的问题, 具体实现为一个index页面添加一个子组件, 然后在组件中调用wx.createSelectorQuery().select(‘xxx’).boundingClientRect(function(rect){
console.log(rect)
}).exec(res=>{
console,log(res)
})
结果一直未空, 有谁遇到过么?
6 回复
@5楼
var query =wx.createSelectorQuery(). in ( this ); query.selectAll( '.wepy-like' ).boundingClientRect((rects)=>{ debugger; this .wepyLikeHeight=rects[0].height; }).exec() |
没效果进不去