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