<view id="id" style="height:90rpx">123</view>
const query = uni.createSelectorQuery().in(this);
query.select('#id').boundingClientRect(data => {
console.log(data.height);
}).exec();
请问这个是什么问题?一直获取都是0·在其他组件获取正常,什么情况下一直没法获取高度?
<view id="id" style="height:90rpx">123</view>
const query = uni.createSelectorQuery().in(this);
query.select('#id').boundingClientRect(data => {
console.log(data.height);
}).exec();
请问这个是什么问题?一直获取都是0·在其他组件获取正常,什么情况下一直没法获取高度?
2 个回复
极思科技
你好 你解决了吗
陌泪儿
因为需要在onReady生命周期里获取