当由component创建的page,onLoad等生命周期以及一些在this上的方法需要自己手动在每个页面添加,这个其实问题不大,
现在就是 getOpenerEventChannel 这个方法,我需要使用,所以需要申明在
Component<InitData, InitProperty, InitMethod>
的InitMethod里,然后我需要在ts的methods里加上getOpenerEventChannel 方法,
但是加上以后,我的写的getOpenerEventChannel 方法 覆盖了在this上的getOpenerEventChannel 方法,
现在就出现,我不在InitMethod加getOpenerEventChannel 方法,调用处会报错,加上,函数又会被覆盖。
无限纠结。提交报错但能完成功能的代码?
如果是 https://developers.weixin.qq.com/miniprogram/dev/extended/utils/api-typings.html
可以在这里提issue https://github.com/wechat-miniprogram/api-typings/issues?q=is%3Aopen+is%3Aissue
你好,麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
现在使用 [key: string]: any
来屏蔽这个问题,希望官方能解决一下