React Native - 全局事件监听器

问题描述 投票:3回答:1

我在Pairing屏幕上注册了一个监听器,只要连接的蓝牙设备断开连接,就会调用一种方法

// Pairing.js

const BleManagerModule = NativeModules.BleManager;
const bleManagerEmitter = new NativeEventEmitter(BleManagerModule);

componentDidMount() {
  this.handlerDisconnected = bleManagerEmitter.addListener(
    "BleManagerDisconnectPeripheral",
    this.handlePeripheralDisconnected
  );
}

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

我希望这个活动遍及我的应用程序,如何创建全局事件监听器而不必复制粘贴此代码到每个屏幕?

p.s我正在使用react-native-ble-manager和redux + sagas如果有帮助的话

reactjs react-native bluetooth react-native-ble-plx
1个回答
1
投票

在顶级组件中添加侦听器(App.js)

© www.soinside.com 2019 - 2024. All rights reserved.