react native 安卓home返回键页面刷新
Posted 星小星啊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react native 安卓home返回键页面刷新相关的知识,希望对你有一定的参考价值。
import { withNavigationFocus } from ‘react-navigation‘;
class Warngreete extends React.Component {
constructor(props) {
super(props);
}
componentDidMount() {
this.reload();
}
componentWillReceiveProps(newProps) {
if(newProps.isFocused){
this.reload();
}
}
//页面执行函数
reload(){}
}
export default withNavigationFocus(Warngreete);
以上是关于react native 安卓home返回键页面刷新的主要内容,如果未能解决你的问题,请参考以下文章