boundingClientRect返回一直为null?

onReady() {
var that = this;
//获取元素节点的位置信息
var query = wx.createSelectorQuery().in(this)
setTimeout(() => {
query.select('.bankuai0').boundingClientRect(res => {
console.log(res)//这里一直为空,更换其它CLss还是空
}).exec();
}, 0);
},
