您的当前位置:首页正文

微信小程序-API wx.getSystemInfo(Object object) 获取系统信息

2024-11-30 来源:个人技术集锦
     wx.getSystemInfo({
          success: res => { //接口成功时的回调
           console.log(res.brand);//设备品牌
           console.log(res.pixelRatio);//设备像素比
           console.log(res.screenWidth);//屏幕宽度,单位px
           console.log(res.screenHeight);//屏幕高度,单位px
           console.log(res.windowWidth);//可使用窗口宽度,单位px
           console.log(res.windowHeight);//可使用窗口高度,单位px
           console.log(res.statusBarHeight);//状态栏的高度,单位px
          }
    })

显示全文