微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

react native jpush跳转页面不成功解决方法

在点击事件时加入如下红色代码即可


import JPushModule from ‘jpush-react-native‘; ... componentDidMount() { // 新版本必需写回调函数 // JPushModule.notifyJSDidLoad(); JPushModule.notifyJSDidLoad((resultCode) => { if (resultCode === 0) {} }); // 接收自定义消息 JPushModule.addReceiveCustomMsgListener((message) => { this.setState({pushMsg: message}); }); // 接收推送通知 JPushModule.addReceiveNotificationListener((message) => { console.log("receive notification: " + message); }); // 打开通知 JPushModule.addReceiveOpenNotificationListener((map) => { console.log("opening notification!"); console.log("map.extra: " + map.extras);
    if(Platform.OS==="android"){
      JPushModule.notifyJSDidLoad(resultCode=>console.log(resultCode))
    }
// 可执行跳转操作,也可跳转原生页面 // this.props.navigation.navigate("SecondActivity"); }); } componentwillUnmount() { JPushModule.removeReceiveCustomMsgListener(); JPushModule.removeReceiveNotificationListener(); }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐