uniapp 获取屏幕分辨率

2022/6/20 23:21:39

本文主要是介绍uniapp 获取屏幕分辨率,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

uni-app提供了异步(uni.getSystemInfo)和同步(uni.getSystemInfoSync)的2个API获取系统信息。

具体使用:

//data声明变量  windowWidth   windowHeight 

//created 获取信息
 uni.getSystemInfo({
      success: (res) => {
        this.windowWidth = res.windowWidth;
        this.windowHeight = res.windowHeight;
        console.log("宽度:", this.windowWidth);
        console.log("高度:", this.windowHeight);
      },
    });

 

返回的数据:

 

 

 

官方信息:系统信息 uni.getSystemInfo



这篇关于uniapp 获取屏幕分辨率的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程