一、问题描述
使用RN调试时老是出现如下烦人的警告。
YellowBox.js:67 Remote debugger is in a background tab which may cause apps to perform slowly. Fix this by foregrounding the tab (or opening it in a separate window).
二、解决方案
在程序的入口填入如下内容 (例如在index.js中写入)
import {YellowBox }from 'react-native';
YellowBox.ignoreWarnings(['Remote debugger']);
这句话的作用是,不理睬这个警告。
网友评论