小编典典

如何在 React Native iOS 模拟器中隐藏警告?

all

我刚刚升级了我的 React Native,现在 iOS 模拟器有一堆警告。除了修复它们,我如何隐藏这些警告以便我可以看到下面的内容?


阅读 157

收藏
2022-08-16

共1个答案

小编典典

根据 React Native
DocumentationdisableYellowBox
,您可以通过设置如下来隐藏警告消息true

console.disableYellowBox = true;

更新:React Native 0.63+

console.disableYellowBox已删除,现在您可以使用:

import { LogBox } from 'react-native';
LogBox.ignoreLogs(['Warning: ...']); // Ignore log notification by message
LogBox.ignoreAllLogs();//Ignore all log notifications

忽略所有日志通知

2022-08-16