silentInject

布尔类型,默认值为 false。

0.6.1及以上版本插件支持该属性。

当使用小程序插件(例如微信同声传译)时,重写 App/Page/wx 等全局变量被微信禁止(调试基础库 2.0.9 及以上版本):

  1. [non-writable] write wx is not allowed when using plugins at app.json.
  2. [non-writable] write App is not allowed when using plugins at app.json.
  3. [non-writable] write Page is not allowed when using plugins at app.json.

这时,请将silentInject设为 true。

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

并使用notifyError上报 onError 捕获的错误:

  1. App({
  2. onError: function(err) {
  3. fundebug.notifyError(err);
  4. }
  5. });