禁止向控制台模拟器发出警告

时间:2018-04-14 18:54:57

标签: react-native

规格:

  1. 控制台模拟器Cmder
  2. Windows 10(64位)
  3. create-react-native-app
  4. react native 54.2
  5. 是否可以禁止向控制台模拟器发送警告消息?

1 个答案:

答案 0 :(得分:0)

根据documentation,您可以在开发期间使用console.disableYellowBox = true;

或者您可以忽略特定的警告消息

import {YellowBox} from 'react-native';
YellowBox.ignoreWarnings(['Warning: ...']);

示例

YellowBox.ignoreWarnings(['Warning: ReactNative.createElement']);