美文网首页
调试RN解决烦人的警告 YellowBox.js:67 Remo

调试RN解决烦人的警告 YellowBox.js:67 Remo

作者: 光脚丫的孩子 | 来源:发表于2019-04-24 13:30 被阅读0次

    一、问题描述

        使用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']);

        这句话的作用是,不理睬这个警告。

    相关文章

      网友评论

          本文标题:调试RN解决烦人的警告 YellowBox.js:67 Remo

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