- 当前 Bug 的表现(可附上截图)
wx.getSystemInfo({
success: (res) => {
/* 获取设备可使用窗口宽高*/
this.globalData.windowWidth = res.windowWidth
this.globalData.windowHeight = res.windowHeight
}
});
在app.json中添加了tabBar之后,实际获得windowHeight高度变小了(个人认为减去了tabar的高度),
- 预期表现
// 解决 自适应高度问题 220为顶部head高度
this.setData({
scrollheight: app.globalData.windowHeight - (app.globalData.windowWidth / 750 * 220)
});
这样获取的scrollheight在一级页面(显示tabbar的)页面占满剩余屏幕高度
在二级页面(不显示tabbar)距离底部有一个tabbar的高度,不是占满剩余屏幕高度。
怎么样才能让scrollheight占满满剩余屏幕高度?
你好,tabbar高度不包含在windowHeight里面
tabbar的高度是多少?怎么获取?
目前没有提供直接获取tabbar高度的方法
问题已解决
https://segmentfault.com/a/1190000014287918