write wx is not allowed

当使用小程序插件(例如微信同声传译)时,重写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.

1. 使用0.6.1及以上版本的Fundebug插件

2. 将silentInject设为true。

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

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

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