需求:2个页面,list 和 update,从 list 进入 update操作完成后返回到 list 页面,并触发 list 页面的刷新。
方案如下:
一、navigate 中 传递一个callback函数作为参数
从 list 进入 update时先传递一个callback函数作为参数
update在goback前 调用callback方法,在callback里面刷新list页面。
比如在 list 跳转到 update 时携带一个参数去下个页面
navigate('update ',{ callback: (data)=>{ console.log(data); // 打印值为:'回调参数' } });
在 update 页面 goback 之前,取到并回传参数,这样回传参数会重走 render 方法。
const {navigate,goBack,state} = this.props.navigation; state.params.callback('回调参数'); goBack();
延伸问题: 跨多级页面返回要如何处理?
二、利用 DeviceEventEmitter 通知
在 list componentDidMount方法中注册监听事件
DeviceEventEmitter.addListener('BackTo',(dic) => { // 接收到 update 页发送的通知,后进行的操作内容 console.log('BackTo',dic) });
在 update 页 componentWillUnmount 方法中触发监听事件
DeviceEventEmitter.emit('BackTo',{name: 'back'});
延伸问题: 返回时可能触发多次事件,遇到过返回时触发了6次事件
原文链接:https://www.f2er.com/react/301810.html