React native中的组建通知通信:

Posted 谢玉胜的技术文章

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React native中的组建通知通信:相关的知识,希望对你有一定的参考价值。

有这么一个需求,在B页面pop()回到A页面,需要A页面执行刷新,那么我们可以采用以下方法:

1:在A页面Push到B页面中,加上一个A页面中的刷新函数做为参数,然后在B页面中在pop()函数封装后通过this.props.xxx来执行!

2:通过组建之间的通知(监听)来执行!

 在A页面上:

在didmount中

this.listener = RCTDeviceEventEmitter.addListener(‘undateUserInfo‘,(value)=>{
// 接受到通知后刷新
console.log("宝宝接受到通知到啦")

//需要执行的函数
this._onRefresh();
});

在B页面上:

back(){

pop();

RCTDeviceEventEmitter.emit(‘undateUserInfo‘,value);

}

就这样就ok啦!当然ABye 面都需要倒入组建:import RCTDeviceEventEmitter from ‘RCTDeviceEventEmitter‘

 

注意:在A页面推出的时候,需要移除监听:

在unMount中

componentWillUnmount(){
this.listener.remove();
};

以上是关于React native中的组建通知通信:的主要内容,如果未能解决你的问题,请参考以下文章

iOS 无法在 react-native-firebase 中接收通知

如何在 react-native webView 和 React web-app 之间进行通信?

react-native upoad imagepicker

SyntaxError - node_modules/react-native/Libraries/polyfills/error-guard.js:缺少分号。 (14:4) 在 react nati

react-native-sqlite-storage 中的 React Native Async Await

当用户手动关闭 react-native-ios 应用程序时如何运行一些代码?