react native不同组件间传递值

前端之家收集整理的这篇文章主要介绍了react native不同组件间传递值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

事件的订阅与发送:DeviceEventEmitter

注册事件监听

import {
  DeviceEventEmitter,} from 'react-native';

class XiFan extends Component {
    componentDidMount(){
        this.subscription = DeviceEventEmitter.addListener('dataChange',this._onListenerCallback.bind(this));
      }

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

    _onListenerCallback(params){
        console.log('params = '+ params);
      };
  }

在另一个组件中,需要发送通知时,调用

DeviceEventEmitter.emit('dataChange',params);
原文链接:https://www.f2er.com/react/306226.html

猜你在找的React相关文章