React-Native关闭警告提示及开启Network

2021-01-11  本文已影响0人  无穷369

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
上一篇 下一篇

猜你喜欢

热点阅读