• React Native学习之DeviceEventEmitter传值


     使用DeviceEventEmitter前需添加

    import {
         AppRegistry,
         StyleSheet,
         Text,
         View,
         DeviceEventEmitter
     } form 'react-native';

     添加DeviceEventEmitter

    componentDidMount() {
         this.subscription = DeviceEventEmitter.addListener('userNameDidChange',(userName) =>{
              alert('通知');
         })
    },

     移除DeviceEventEmitter

    componentWillUnmount() {
        // 移除
        this.subscription.remove();
    },

     发送通知

    DeviceEventEmitter.emit('userNameDidChange', '通知来了');

     OK, 完成! 赶紧试试吧! ~~

  • 相关阅读:
    structInMemory
    合并字符串
    eggs
    1005. Spell It Right (20) -PAT
    60 人工智能
    50 计算机网络
    20数据结构
    40操作系统
    10 C/C++/python
    30汇编
  • 原文地址:https://www.cnblogs.com/Milo-CTO/p/5957218.html
Copyright © 2020-2023  润新知