问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug createSelectorQuery 客户端 最新版本 2.2.0~2.4.0
- 当前 Bug 的表现(可附上截图)
获取不到节点的真实高度,都是一个固定的数
代码片段
var query = wx.createSelectorQuery(); query.selectAll('.item-content').boundingClientRect() var that = this; query.exec(function (res) { var array = res[0]; console.log(array) for (var i = 0; i < array.length; i++) { if (that.data.datas[i].dH == 20) { var height = array[i].height * 2 })
微信小程序开发问题解答
微信小程序开发者回答:
如果是在生命周期里,建议在onReady里获取。。如果有setData后获取高度,建议放到 this.setData({},callback)这个回调里获取
微信小程序开发者回答:
麻烦提供出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
本文网址:http://www.91bianli.com/weixinxiaochengxu/34177.html