升级到最新的React Native版本0.55.4后,我看到isMounted()警告。

javascript - 升级到React Native 0.55.4后,isMounted()警告一直显示-LMLPHP

最佳答案

将以下代码添加到您的根index.js文件中。

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

07-24 21:05