根据文档介绍,可以在app.json中增加字段,对用户老版本微信进行兼容
然后我在app.json中增加了字段:
},
“cloud”: true,
“plugins”: {
“tencentvideo”: {
“version”: “1.2.4”,
“provider”: “wxa75efa648b60994b”
}
}
}
并且也在app.js中设置了初始化代码:
onLaunch: function() {
wx.cloud.init({
traceUser: true,
env: that.globalData.cloudID
})
…
但运行后,在windows和mac的开发工具都报错:
VM1307:1 [non-writable] modification of global variable “wx.cloud” is not allowed when using plugins at app.json.
还增加了Reporter.reportKeyValue的奇怪log
- 当前 Bug 的表现(可附上截图)
请教!