silentInject
布尔类型,默认值为 false。
0.6.1及以上版本插件支持该属性。
当使用小程序插件(例如微信同声传译)时,重写 App/Page/wx 等全局变量被微信禁止(调试基础库 2.0.9 及以上版本):
[non-writable] write wx is not allowed when using plugins at app.json.
[non-writable] write App is not allowed when using plugins at app.json.
[non-writable] write Page is not allowed when using plugins at app.json.
这时,请将silentInject设为 true。
fundebug.init({
silentInject: true
});
并使用notifyError上报 onError 捕获的错误:
App({
onError: function(err) {
fundebug.notifyError(err);
}
});