我刚刚升级了我的ReactNative,现在iOS模拟器有一堆警告。除了修复它们,我如何隐藏这些警告以便我可以看到下面的内容? 最佳答案 根据ReactNativeDocumentation,您可以通过将disableYellowBox设置为true来隐藏警告消息,如下所示:console.disableYellowBox=true;更新:ReactNative0.63+console.disableYellowBox已删除,现在您可以使用:import{LogBox}from'react-native';LogBox.ignore
我刚刚升级了我的ReactNative,现在iOS模拟器有一堆警告。除了修复它们,我如何隐藏这些警告以便我可以看到下面的内容? 最佳答案 根据ReactNativeDocumentation,您可以通过将disableYellowBox设置为true来隐藏警告消息,如下所示:console.disableYellowBox=true;更新:ReactNative0.63+console.disableYellowBox已删除,现在您可以使用:import{LogBox}from'react-native';LogBox.ignore