如何忽略React Native中的导入失败?

时间:2018-06-13 11:24:10

标签: javascript android node.js react-native import

我想在React Native中的脚本中导入一个模块。此模块仅有index.android.js,因此在iOS上导入失败。 我怎么能忽略它,因为我不需要在iOS中使用该模块?

我尝试使用if (Platform.OS == 'android') Module = require('module'),但仍然会抛出UnableToResolveError:

Module does not exist in the module map or in these directories: D:\myproject\node_modules

重要: 我不想修改模块。

1 个答案:

答案 0 :(得分:0)

您可以尝试使用此https://github.com/facebook/react-native/issues/7271这不是一个完整的答案,但它可以帮助您。