query.select("#left").boundingClientRect().exec(res=>{
往"#left"view中添加了照片,使得"#left"长度增加
wx.createSelectorQuery().select("#left").boundingClientRect(function(resx){console.log(resx)}).exec();
})
最终的运行结果是res中得到的长度,和resx中得到的长度始终相等,按照代码逻辑应该是不同的啊?这是为什么?
提供问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。