//第一种监听,不传参
import {DeviceEventEmitter} from ‘react-native’;
//A页面
componentDidMount() {

    this.listener = DeviceEventEmitter.addListener('test',this.loding.bind(this))
//'test'是一个键,可以随便取名字,但是要和B页面的键对应,后面跟方法。

}
//刷新事件
loding(){
this.setState({
isLoding : true,
});

    setTimeout(() => {
        this.setState({
            isLoding : false,
        });
        this.get_xinxi();
    }, 1);
}

//移除监听
componentWillUnmount(){
this.listener.remove();
}

//B页面
//可以的value可以随便是什么值,返回就调用刷新事件
let value = 1 ;
DeviceEventEmitter.emit(‘test’,value);
this.props.navigation.goBack();

//第二种方法 ,从B页面传参回来
import {DeviceEventEmitter} from ‘react-native’;

//A页面
componentDidMount() {

    this.listener = DeviceEventEmitter.addListener('test',this.update.bind(this))
//'test'是一个键,可以随便取名字,但是要和B页面的键对应,后面跟方法。

}
//刷新事件
update(nickname){
this.setState({
nickname
});
}
//移除监听
componentWillUnmount(){
this.listener.remove();
}

//B页面
//可以的value的值,是要传回的值,A页面需要nickname的值,那就从B页面传回nickname的值
//这三句话,写在onPress的事件里
let value = this.state.nickname ;
DeviceEventEmitter.emit(‘test’,value);
this.props.navigation.goBack();

Logo

智屏生态联盟致力于大屏生态发展,利用大屏快应用技术降低开发者开发、发布大屏应用门槛

更多推荐