onLaunch里关于getSystemInfo的问题
发布于 4 年前 作者 yuanqiang 10272 次浏览 来自 问答

在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

    }

})

这两个值不一致,是为什么呢?

回到顶部