我刚刚升级了我的 React Native,现在 iOS 模拟器有一堆警告。除了修复它们,我如何隐藏这些警告以便我可以看到下面的内容?
根据 React Native DocumentationdisableYellowBox ,您可以通过设置如下来隐藏警告消息true:
disableYellowBox
true
console.disableYellowBox = true;
console.disableYellowBox已删除,现在您可以使用:
console.disableYellowBox
import { LogBox } from 'react-native'; LogBox.ignoreLogs(['Warning: ...']); // Ignore log notification by message LogBox.ignoreAllLogs();//Ignore all log notifications
忽略所有日志通知