uni-app获取系统信息

uni-app获取系统信息

 uni.getSystemInfo({
     
        success: function (res) {
     
            console.log(res.model);              //手机型号
            console.log(res.pixelRatio);   		//设备像素比
            console.log(res.windowWidth);  	//可使用窗口宽度
            console.log(res.windowHeight);  //可使用窗口高度
            console.log(res.language);   		//应用设置的语言
            console.log(res.system);    			//操作系统版本
            console.log(res.platform);   		//客户端平台,值域为:ios、android
        }
    });
    
  屏幕高度=状态栏高度+原生导航栏高度+可使用窗口高度+原生tabbar高度
  H5端,windowHeight不包含NavigationBar和TabBar的高度,windowTop等于NavigationBar高度,windowBottom等于TabBar高度,statusBarHeight为0
    

你可能感兴趣的:(uni-app,uni-app)