微信小程序-获取屏幕可显示尺寸-全布局需要的

获取当前用户屏幕可显示尺寸
在wxss中可以在
page{
overflow:hidden;
}
防止页面1/2px的滚动
【微信小程序-获取屏幕可显示尺寸-全布局需要的】onLoad: function (options) {
var that = this
// 获取系统信息
wx.getSystemInfo({
success: function (res) {
console.log(res);
// 可使用窗口宽度、高度
console.log('height=' + res.windowHeight);
console.log('width=' + res.windowWidth);
// 计算主体部分高度,单位为px
that.setData({
second_height: res.windowHeight
})
}
})
},

    推荐阅读