如何在React Native中禁用警告?

时间:2018-05-11 13:38:42

标签: react-native warnings

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

上显示的黄色警告

3 个答案:

答案 0 :(得分:0)

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

文档中的更多信息:

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

答案 1 :(得分:0)

console.disableYellowBox = true;到index.js .enjoy

答案 2 :(得分:0)

console.disableYellowBox已不赞成使用LogBox.ignoreAllLogs()

在index.js中只需设置:

import { LogBox } from "react-native"

LogBox.ignoreAllLogs(true)

import { YellowBox } from "react-native"

YellowBox.ignoreWarnings(["Warning: ..."])

良好的编码!