如何禁用 React Native 中的警告?

Rev*_*ddh 5 warnings react-native

我知道警告很重要。但出于特定原因,我不希望它们出现在屏幕上。如何禁用出现的黄色警告screen

Fau*_*ten 14

console.disableYellowBox已被弃用,取而代之的是LogBox.ignoreAllLogs()

在index.js中只需设置:

import { LogBox } from "react-native"

LogBox.ignoreAllLogs(true)
Run Code Online (Sandbox Code Playgroud)

或者

import { YellowBox } from "react-native"

YellowBox.ignoreWarnings(["Warning: ..."])
Run Code Online (Sandbox Code Playgroud)

良好的编码!


Rey*_*nes 2

建议注意,这不会显示在发布版本中......但如果您想删除警告,您可以设置console.disableYellowBox = true

文档中的更多信息:

https://facebook.github.io/react-native/docs/debugging.html#warnings