setSystemInfo

布尔类型,默认值为 false。

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

  1. {
  2. "model": "5",
  3. "brand": "IPHONE",
  4. "language": "zh-Hans",
  5. "version": "10.1.12",
  6. "storage": "62.42G",
  7. "currentBattery": "50%",
  8. "system": "6.0.1",
  9. "platform": "iPhone"
  10. }

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

  1. fundebug.init({
  2. setSystemInfo: true
  3. });