我希望能够为所有平台导出一个包,但我使用一些纯粹的JS回退的本机绑定.通常我会注意到差异
检查是否存在对象窗口或导出.
如何在React Native上实现这一目标?
最佳答案
以下是检查代码是否在web,nodejs或react-native上的方法:
if (typeof document != 'undefined') {
// I'm on the web!
}
else if (typeof navigator != 'undefined' && navigator.product == 'ReactNative') {
// I'm in react-native
}
else {
// I'm in node js
}
资料来源:
> What causes node to return ‘navigator is not defined’
> Add way to detect react-native (and platform) without require().
> React Native support is broken