美文网首页
react-native 关闭所有warning警告

react-native 关闭所有warning警告

作者: 丿一丨丿丶丨一 | 来源:发表于2019-07-29 12:10 被阅读0次

项目开发中,会碰到react-native 黄色警告框提示,原因有:即将退出版本的插件,也有提示用其他参数代替现在的所有的参数,不影响开发流程的情况下可以关闭警告框

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

将代码根据需要加在index.js文件中,放在AppRegistry.registerComponent('App', () => App)之前

相关文章

网友评论

      本文标题:react-native 关闭所有warning警告

      本文链接:https://www.haomeiwen.com/subject/uatbrctx.html