有时候黄色警告看了很烦人,那就去掉吧。
componentDidMount(){
//在0.63之前:
console.disableYellowBox = true;
//在0.63以后需要这样用
LogBox.ignoreAllLogs()
}
编辑警告:
console.warn(xxx);
有时候黄色警告看了很烦人,那就去掉吧。
componentDidMount(){
//在0.63之前:
console.disableYellowBox = true;
//在0.63以后需要这样用
LogBox.ignoreAllLogs()
}
编辑警告:
console.warn(xxx);