React-Native:什么会导致模块为空?

React-Native: What can cause a module to be null?

我正在使用 expo 和 yarn 开发一个 React Native 项目,需要安装一个新的依赖项来获取设备制造商(如果您想知道的话,它是 react-native-device-info)。我成功安装了它,并在我的代码中实现了它,但是在使用 expo go 打开应用程序时,我看到了一条错误消息

@React-native-community/react-native-device-info: NativeModule.RNDeviceInfo is null. To fix this issue follow these steps: *useless steps*

在 github 回购中查找我发现了很多解决这个问题的问题(并且开发人员回答这不是他的问题,因为它适用于他的示例)。据我了解,错误是他对应的 Native module cannot be null。所以我的问题是:Native 模块怎么可能为空?可能是什么原因?

我想自己解决这个问题,但不知道这个错误是如何产生的,也不知道本机模块是如何工作的,我什至不知道从哪里开始。我读到这可能是一个链接问题,但 0.59 以上的 RN 版本应该有自动链接,甚至手动链接也没有帮助。即使重新安装所有内容也无济于事。通过搜索他的代码,我找到了我将留在此处的代码片段,这是触发错误的确切位置,但我不知道我们是如何到达那里的。

文件: nativeinterface.ts

    import { Platform, NativeModules } from 'react-native';
import { DeviceInfoNativeModule } from './privateTypes';

let RNDeviceInfo: DeviceInfoNativeModule | undefined = NativeModules.RNDeviceInfo;

// @ts-ignore
if (Platform.OS === 'web' || Platform.OS === 'dom') {
  RNDeviceInfo = require('../web');
}

if (!RNDeviceInfo) {
  // Produce an error if we don't have the native module
  if (
    Platform.OS === 'android' ||
    Platform.OS === 'ios' ||
    Platform.OS === 'web' ||
    // @ts-ignore
    Platform.OS === 'dom'
  ) {
    throw new Error(`@react-native-community/react-native-device-info: NativeModule.RNDeviceInfo is null. To fix this issue try these steps:
  • For react-native <= 0.59: Run \`react-native link react-native-device-info\` in the project root.
  • Rebuild and re-run the app.
  • If you are using CocoaPods on iOS, run \`pod install\` in the \`ios\` directory and then rebuild and re-run the app. You may also need to re-open Xcode to get the new pods.
  If none of these fix the issue, please open an issue on the Github repository: https://github.com/react-native-community/react-native-device-info`);
  }
}

export default RNDeviceInfo as DeviceInfoNativeModule;

如果您需要更多信息或者我有什么不对,请告诉我。

版本:

React Native => 0.62.2
expo => 38
react-native-device-info => 6.0.0
yarn => 1.22.5

在浪费了大量时间查看关于此错误的 47 个 github 问题中的一个之后(我会问自己几个问题)我终于发现问题出在那个博览会上不支持新的本机模块。在我的具体示例中,我可以安装 expo-device 以获得与 react-native-device-info 相同的结果。但是,如果 expo 没有满足您需要的模块,恐怕您将不得不放弃它。