一、ReactNative内部事件通知
1.引入头文件
import { DeviceEventEmitter } from 'react-native';
2.发送方 发送通知
DeviceEventEmitter.emit('通知名称');
3.接收方 接收通知
componentDidMount() {
this.subscription = DeviceEventEmitter.addListener('通知名称', (params) => {
});
}
4.接收方 清除通知
componentWillUnmount() {
this.subscription && this.subscription.remove();
}