systemInfo

注: 0.6.1及以上版本的插件不再支持这个属性,请通过配置setSystemInfo属性来获取systemInfo。

systemInfo是用户的系统信息,比如操作系统,微信版本等等:

  1. "systemInfo":
  2. {
  3. "system": "iOS 10.2",
  4. "model": "iPhone 7",
  5. "pixelRatio": 2,
  6. "windowHeight": 603,
  7. "language": "zh_CN",
  8. "version": "6.5.3",
  9. "windowWidth": 375,
  10. "platform": "ios"
  11. }

为了保护用户隐私,Fundebug默认情况下不收集systemInfo。开发者如果需要收集systemInfo,需要将setSystemInfo属性设为true:

  1. wx.getSystemInfo(
  2. {
  3. success: function(res)
  4. {
  5. fundebug.systemInfo = res;
  6. }
  7. })