onLaunch里关于getSystemInfo的问题
在onLaunch里通过
wx.getSystemInfo({
success: function (res) {
var windowHeight = res.windowHeight;
console.log(windowHeight) // 566
}
})
在page中
wx.getSystemInfo({
success: function (res) {
var windowHeight = res.windowHeight;
console.log(windowHeight) // 572
}
})
这两个值不一致,是为什么呢?