1、关闭黄色警告提示
在项目的入口文件 index.js
中加如下代码
console.ignoredYellowBox = ['Warning: BackAndroid is deprecated. Please use BackHandler instead.','source.uri should not be an empty string','Invalid props.style key'];
console.disableYellowBox = true; // 关闭全部黄色警告
2、查看网络请求
在项目的入口文件 index.js
中加如下代码
// 捕获网络请求
GLOBAL.XMLHttpRequest = GLOBAL.originalXMLHttpRequest || GLOBAL.XMLHttpRequest
网友评论