我在我的 react-native 项目中使用 a ,并分别TabNavigator
通过 和 在屏幕之间传递一些数据。问题是这种方法对我有用,仅当我第一次发送该数据时,第二次尝试发送数据时,离开屏幕时数据不会更新this.props.navigation.setParams()
this.props.navigation.getParam()
navigation.state.params
下面是负责接收和发送数据的代码片段
import {NavigationEvents} from 'react-navigation';
...
receiveData = () => {
if (this.props.navigation.state.params.data !== null) {
const data = this.props.navigation.getParam('data');
this.setState({data});
}
}
sendData = () => {
const {data} = this.state;
this.props.navigation.setParams({data});
}
render(){
...
<NavigationEvents
onWillFocus = {this.receiveData}
on WillBlur = {this.sendData}
/>
...
}