美文网首页react-native
React-Navigation使用出现Warning: isM

React-Navigation使用出现Warning: isM

作者: 现实梦想_96b0 | 来源:发表于2018-05-29 16:36 被阅读162次

使用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使用出现Warning: isM

    本文链接:https://www.haomeiwen.com/subject/zweajftx.html