react-native-wechat出现undefined is not an object
在RN项目中使用第三方插件react-native-wechat
参考文档:https://github.com/weflex/rea...
按照官方文档配置完成后会在执行到应用注册时报错
compinentDidMount(){
WeChat.registerApp('应用ID');
}
错误如图所示:
希望知道'_reactNativeWechat2.default.registerApp'中_reactNativeWechat2是什么鬼?怎么解决?谢谢大家
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题已经解决,具体请跳到下面链接
https://github.com/yorkie/rea...
registerApp(appid)
You should call this function in global, calling over twice would throw an error.
// If you register here
componentDidMount (){
wechat.registerApp('your appid')
}
{String} appid the appid you get from WeChat dashboard
returns {Promise}
填写回调的promise 看看