我知道警告很重要。但出于特定原因,我不希望他们出现在屏幕上。如何禁用screen
答案 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: ..."])
良好的编码!