getSystemInfoSync

同步获取系统信息

  1. const result = system.getSystemInfoSync();

result示例:

  1. {
  2. "screenWidth": 1280,
  3. "screenHeight": 800,
  4. "pixelRatio": 1.25,
  5. "platform": "Android",
  6. "system": "6.1.8-D-20201202.2128",
  7. "version": "1.1.195",
  8. "versionCode": 195,
  9. "app": "com.alibaba.genie.waft",
  10. "sdkVersion": "0.3",
  11. "sdkVersionCode": 3,
  12. "model": "AILABS_S3",
  13. "brand": "alps"
  14. }

getSystemInfo

异步获取系统信息

  1. system.getSystemInfo(function(info){
  2. });

result示例:

  1. {
  2. "screenWidth": 1280,
  3. "screenHeight": 800,
  4. "pixelRatio": 1.25,
  5. "platform": "Android",
  6. "system": "6.1.8-D-20201202.2128",
  7. "version": "1.1.195",
  8. "versionCode": 195,
  9. "app": "com.alibaba.genie.waft",
  10. "sdkVersion": "0.3",
  11. "sdkVersionCode": 3,
  12. "model": "AILABS_S3",
  13. "brand": "alps"
  14. }


getCurrentTimeMillisSync

同步获取系统时间

  1. const result = system.getCurrentTimeMillisSync();