write wx is not allowed
当使用小程序插件(例如微信同声传译)时,重写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.
1. 使用0.6.1及以上版本的Fundebug插件
2. 将silentInject设为true。
fundebug.init(
{
silentInject : true
})
3. 使用notifyError上报onError捕获的错误:
App(
{
onError: function(err)
{
fundebug.notifyError(err);
}
})