如何摆脱componentWillMount黄色警告横幅反应原生展示应用程序

时间:2018-04-10 14:03:36

标签: react-native expo

目前我的应用程序正在获取很多黄色横幅警告,组件将会挂载,但是我无法摆脱它们,因为它们在第三方库中。有没有办法可以让它们不上来,因为它们会破坏发展?

1 个答案:

答案 0 :(得分:0)

就我而言,我已经可以通过YellowBox模块来做到这一点。

我正在使用一个使用React Native v0.62的Expo管理项目v38。

示例:

import { YellowBox } from "react-native";

YellowBox.ignoreWarnings([
  "componentWillReceiveProps has been renamed, and is not recommended for use."
]);

对于更高版本,必须使用LogBox模块:https://reactnative.dev/blog/2020/07/06/version-0.63