React-Navigation 使用警告提示:
Warning: isMounted(...) is deprecated in plain Javascript Classes.
Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks.

解决:
github上issue : https://github.com/react-navigation/react-navigation/issues/3956
这里的issue说的很明白了,这个问题不是组件本身的问题是React Native 的bug.可查看rn的issue里面存在此问题.
目前解决办法就是忽略警告(坐等fb解决这个bug了):
import { YellowBox } from 'react-native';
YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated', 'Module RCTImageLoader']);
博客主要讲述了React-Navigation使用时出现警告提示的问题。经查看github上的issue,发现这是React Native的bug。目前的解决办法是忽略警告,等待Facebook解决该bug。
2983

被折叠的 条评论
为什么被折叠?



