视频1 视频21 视频41 视频61 视频文章1 视频文章21 视频文章41 视频文章61 推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37 推荐39 推荐41 推荐43 推荐45 推荐47 推荐49 关键词1 关键词101 关键词201 关键词301 关键词401 关键词501 关键词601 关键词701 关键词801 关键词901 关键词1001 关键词1101 关键词1201 关键词1301 关键词1401 关键词1501 关键词1601 关键词1701 关键词1801 关键词1901 视频扩展1 视频扩展6 视频扩展11 视频扩展16 文章1 文章201 文章401 文章601 文章801 文章1001 资讯1 资讯501 资讯1001 资讯1501 标签1 标签501 标签1001 关键词1 关键词501 关键词1001 关键词1501 专题2001
详解react native页面间传递数据的几种方式
2020-11-27 22:04:18 责编:小采
文档


1. 利用react-native 事件DeviceEventEmitter 监听广播

应用场景:

- 表单提交页面, A页面跳转到B页面选人, 然后返回A页面, 需要将B页面选择的数据传回A页面。
- 多个多媒体来回切换播放,暂停后二次继续播放等问题。

代码如下:

A页面

 componentDidMount() {
 // 利用DeviceEventEmitter 监听 concactAdd事件
 this.subscription = DeviceEventEmitter.addListener('concactAdd', (dic) => {// dic 为触发事件回传回来的数据
 // 接收到 update 页发送的通知,后进行的操作内容
 if (dic.approver_list) {
 this.setState((preState: Object) => {
 this.updateInputValue(preState.approver_list.concat(dic.approver_list), 'approver_list');
 return { approver_list: preState.approver_list.concat(dic.approver_list) };
 });
 }
 if (dic.observer_list) {
 this.setState((preState: Object) => {
 this.updateInputValue(preState.observer_list.concat(dic.observer_list), 'observer_list');
 return { observer_list: preState.observer_list.concat(dic.observer_list) };
 });
 }
 });
...
componentWillUnmount() {
 this.subscription.remove();
}

B页面

// 触发concactAdd事件广播
handleOk = (names: []) => {
 const { field } = this.props;
 DeviceEventEmitter.emit('concactAdd', { [field]: names });
 }

2. 用react-navigation提供的路由之间

A页面

// 定义路由跳转函数 cb表示需要传递的回调函数
export const navigateToLinkman = (cb: Function, type?: string, mul?: boolean): NavigateAction =>
 NavigationActions.navigate({ routeName: 'Linkman', params: { cb, type, mul } });
 // 跳转选择人员页面
 handleSelectUser = () => {
 Keyboard.dismiss();
 this.props.actions.navigateToLinkman(this.selectedUser, '', true);
...
// 选择人员后的回调函数
selectedUser = (selectUser: string[]) => {
 this.setState((preState) => {
 const newEmails = preState.emails.concat(selectUser);
 const emails = [...new Set(newEmails)];
 return {
 emails,
 };
 });
 }

B页面

handleToUser = () => {
 ...
 navigation.state.params.cb(user.email, group);
 ...
}

3. 利用react-navigation 提供的路由事件监听触发事件

在A页面路由失去焦点的时候触发该事件

componentDidMount() { 
this.props.navigation.addListener('didBlur', (payload) => {
 if (this.modalView) this.modalView.close();
 });
 }

那么问题来了, 为何不在页面卸载(componentWillunmount)的时候触发该事件?

如果不了解react-native和react-navigation, 会很困惑, A页面卸载了, 为什么还能接收到来自B页面的数据或者事件, 原因是: react-navigation中, A页面跳转到B页面, A页面没有卸载, 只是在它提供的路由栈中堆积,例如A跳转到B中, A页面不执行componentWillunmount,当每一个路由pop掉的时候才会执行componentWillunmount, 卸载掉当前页面。

下载本文
显示全文
专题