美文网首页uin-app
获取系统信息

获取系统信息

作者: 瑟闻风倾 | 来源:发表于2020-12-10 15:53 被阅读0次

参考:系统信息

getSystemInfoForTest:function(){
            uni.getSystemInfo({
                success: function (res) {
                    // #ifndef H5
                    console.log("SystemInfo-手机品牌(H5不支持):" + res.brand);
                    console.log("SystemInfo-引擎版本号(H5不支持):" + res.version);
                    // #endif
                    
                    console.log("SystemInfo-客户端平台(值域为:ios、android):" + res.platform);
                    console.log("SystemInfo-操作系统版本:" + res.system);
                    console.log("SystemInfo-手机型号:" + res.model);
                    console.log("SystemInfo-设备像素比:" + res.pixelRatio);
                    console.log("SystemInfo-屏幕宽度:" + res.screenWidth);
                    //屏幕高度screenHeight = 原生NavigationBar高度(含状态栏高度)+ 可使用窗口高度 + 原生TabBar高度
                    console.log("SystemInfo-屏幕高度:" + res.screenHeight);
                    console.log("SystemInfo-可使用窗口宽度:" + res.windowWidth);
                    //可使用窗口高windowHeight:不包含NavigationBar和TabBar的高度
                    console.log("SystemInfo-可使用窗口高度:" + res.windowHeight);
                    console.log("SystemInfo-应用设置的语言:" + res.language);
                    console.log("SystemInfo-在竖屏正方向下的安全区域:" + JSON.stringify(res.safeArea));
                    console.log("SystemInfo-在竖屏正方向下的安全区域插入位置:" + JSON.stringify(res.safeAreaInsets));
                    
                    // #ifdef APP-PLUS || H5
                    console.log("SystemInfo-可使用窗口的顶部位置:" + res.windowTop);
                    console.log("SystemInfo-可使用窗口的底部位置:" + res.windowBottom);
                    // #endif
                    
                    // #ifdef MP-WEIXIN
                    console.log("SystemInfo-允许微信使用相册的开关-仅iOS有效(微信小程序):" + res.albumAuthorized);
                    console.log("SystemInfo-允许微信使用摄像头的开关(微信小程序):" + res.cameraAuthorized);
                    console.log("SystemInfo-允许微信使用定位的开关(微信小程序):" + res.locationAuthorized);
                    console.log("SystemInfo-允许微信使用麦克风的开关(微信小程序):" + res.microphoneAuthorized);
                    console.log("SystemInfo-允许微信通知的开关(微信小程序):" + res.notificationAuthorized);
                    console.log("SystemInfo-蓝牙的系统开关(微信小程序):" + res.bluetoothEnabled);
                    console.log("SystemInfo-地理位置的系统开关(微信小程序):" + res.locationEnabled);
                    console.log("SystemInfo-WiFi的系统开关(微信小程序):" + res.wifiEnabled);
                    // #endif
                    
                    // #ifdef MP-QQ
                    console.log("SystemInfo-App平台(QQ小程序):" + res.AppPlatform);
                    // #endif
                    
                    // #ifdef MP-ALIPAY
                    console.log("SystemInfo-导航栏的高度(支付宝小程序):" + res.navigationBarHeight);
                    console.log("SystemInfo-标题栏高度(支付宝小程序):" + res.titleBarHeight);
                    console.log("SystemInfo-设备磁盘容量(支付宝小程序):" + res.storage);
                    console.log("SystemInfo-当前电量百分比(支付宝小程序):" + res.currentBattery);
                    console.log("SystemInfo-当前运行的客户端(支付宝小程序):" + res.app);
                    // #endif
                    
                    // #ifdef MP-BAIDU
                    console.log("SystemInfo-宿主平台(百度小程序):" + res.host);
                    console.log("SystemInfo-上一次缓存的位置信息(百度小程序):" + res.cacheLocation);
                    // #endif
                    
                    // #ifdef MP-TOUTIAO
                    console.log("SystemInfo-宿主APP名称(字节跳动小程序):" + res.appName);
                    // #endif
                    // #ifndef MP-TOUTIAO
                    console.log("SystemInfo-状态栏的高度(字节跳动小程序不支持):" + res.statusBarHeight);
                    // #endif
                    
                }
            });
        }
image.png

相关文章

网友评论

    本文标题:获取系统信息

    本文链接:https://www.haomeiwen.com/subject/fahrgktx.html