规格:
是否可以禁止向控制台模拟器发送警告消息?
答案 0 :(得分:0)
根据documentation,您可以在开发期间使用console.disableYellowBox = true;
。
或者您可以忽略特定的警告消息
import {YellowBox} from 'react-native';
YellowBox.ignoreWarnings(['Warning: ...']);
示例
YellowBox.ignoreWarnings(['Warning: ReactNative.createElement']);