ReactNative——Warning:isMounted(...) is deprecated in plain JavaScript React classed.

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_28484355/article/details/81299179

ReactNative的黄色警告虽然不会影响运行,但挺影响观感的。

这个warning的意思是代码中有被React舍弃的代码,若想屏蔽此提示,可在index.js内加入:

import { YellowBox } from 'react-native';
YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated']);

若有其他黄色提醒,则类似将提醒开头的字符添加.ignoreWarnings([,,,,])的字符数组中,即可被屏蔽。

猜你喜欢

转载自blog.csdn.net/qq_28484355/article/details/81299179