一:
getDescBox () {
uni.createSelectorQuery().
in
(
this
).select(
'.' + class
).boundingClientRect(result => {
if
(result) {
console.log(
result)
}
else
{
this
.getDescBox()
}
}).exec()
}
二:
getDescBox () {uni.createSelectorQuery().
in
(
this
).select(
'.' + class
).boundingClientRect().exec((res)=>{
if
(res\[0\]) {
this
.descHeight \= res\[0\].height
}
else
{
this
.$nextTick(()=>{
this
.getDescBox()
})
}
})
}