uni-app 获取屏幕高度
时间: 2023-10-29 20:06:46 浏览: 99
uni-load-more.zip
在uni-app中获取屏幕高度可以使用uni.getSystemInfo接口,该接口可以获取设备的系统信息,包括屏幕高度等信息。具体实现可以参考以下代码:
```
uni.getSystemInfo({
success: function(res) {
console.log('屏幕高度为:' + res.windowHeight)
}
})
```
其中,res.windowHeight即为屏幕高度。需要注意的是,uni.getSystemInfo是一个异步接口,需要通过回调函数获取返回值。
阅读全文