系统API

qh.getSystemInfo

解释:获取系统信息

方法参数:Object object

object参数说明

参数名类型必填默认值说明
successFunction-接口调用成功的回调
failFunction-接口调用失败的回调函数
completeFunction-接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明

参数说明最低版本
SDKVersion客户端基础库版本-
cpu设备处理器型号-
pixelRatio设备像素比-
scaling系统设置文本缩放比例-
screenWidth屏幕宽度,单位px-
screenHeight屏幕高度,单位px-
language语言-
platform平台-
version浏览器版本号-
system操作系统版本-

示例

  • 在 html 文件中
  1. <div>
  2. <se-button @click="getSystemInfo" type="primary">点击获取系统信息</se-button>
  3. </div>
  • 在 js 文件中
  getSystemInfo(e) {
      qh.getSystemInfo({
          success: res => {
              console.log(res)
          },
          fail: err => {
              qh.showToast({
                  title: '获取失败'
              });
          }
      });
  }

qh.getSystemInfoSync

解释:获取系统信息同步接口

方法参数:无

同步返回参数说明

参数说明最低版本
SDKVersion客户端基础库版本-
cpu设备处理器型号-
pixelRatio设备像素比-
scaling系统设置文本缩放比例-
screenWidth屏幕宽度,单位px-
screenHeight屏幕高度,单位px-
language语言-
platform平台-
version浏览器版本号-
system操作系统版本-

示例

  • 在 html 文件中
<div>
    <se-button type="primary" @click="getSystemInfoSync">getSystemInfoSync</se-button>
</div>
  • 在 js 文件中
  getSystemInfoSync() {
      try {
          const result = qh.getSystemInfoSync();
          console.log('getSystemInfoSync success', result);
      } catch (e) {
          console.log('getSystemInfoSync fail', e);
      }
  }