react-native关闭所有黄色警告

 

将以下这两句话加在index.js(入口文件)中,放在AppRegistry.registerComponent('App', () => App)之前即可


1
console.ignoredYellowBox = ['Warning: BackAndroid is deprecated. Please use BackHandler instead.','source.uri should not be an empty string','Invalid props.style key']; 2 console.disableYellowBox = true // 关闭全部黄色警告

 

posted @ 2019-09-25 09:13  寒江孤影,江湖路人  阅读(726)  评论(0编辑  收藏  举报