componentDidMount() {
this.didFocus = this.props.navigation.addListener(
'didFocus',
() => this._onRefresh()//放你需要執(zhí)行的函數
);
}
componentWillUnmount(){
this.didFocus.remove();//不要忘了移除監(jiān)聽哦
}
在進入或者返回這個頁面的時候 會執(zhí)行_onRefresh
方法
_onRefresh
可以放獲取頁面數據的方法,當進入頁面獲取數據械筛,從其他頁面返回到這個頁面再次請求數據。
ps:指定頁面返回使用指定返回callback