React Native - 如何在Android设备监视器中隐藏警告?

时间:2018-05-16 07:14:01

标签: android debugging react-native console.log

我对Android Device Monitor中的警告感到困惑,该警告向我显示有关View的错误需要一些独特的key,但Yellow Box没有显示在我的屏幕上,

enter image description here

警告错误让我对调试应用程序感到困惑,

有没有办法隐藏警告信息?

  

被修改

我的问题 完全 This不同

原因:

console.disableYellowBox = true只是在我的屏幕上隐藏警告,而不是Android Device Monitor这样:

enter image description here

2 个答案:

答案 0 :(得分:4)

在index.js文件中添加以下代码

console.disableYellowBox = true

答案 1 :(得分:1)

//将这些行放入index.js

import {YellowBox} from 'react-native';

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

console.disableYellowBox = true;