我对Android Device Monitor
中的警告感到困惑,该警告向我显示有关View
的错误需要一些独特的key
,但Yellow Box
没有显示在我的屏幕上,
警告错误让我对调试应用程序感到困惑,
有没有办法隐藏警告信息?
被修改
我的问题 完全 与This不同
原因:
console.disableYellowBox = true
只是在我的屏幕上隐藏警告,而不是Android Device Monitor
这样:
答案 0 :(得分:4)
在index.js文件中添加以下代码
console.disableYellowBox = true
答案 1 :(得分:1)
//将这些行放入index.js
import {YellowBox} from 'react-native';
YellowBox.ignoreWarnings(['Warning: ...']);
console.disableYellowBox = true;