91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解react native頁面間傳遞數據的幾種方式

發布時間:2020-10-01 19:51:52 來源:腳本之家 閱讀:135 作者:toringo 欄目:web開發

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, 卸載掉當前頁面。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

清流县| 太原市| 壤塘县| 桃园市| 曲靖市| 上思县| 乌兰察布市| 横山县| 德惠市| 浙江省| 巴南区| 宣恩县| 绩溪县| 江安县| 临江市| 卢湾区| 甘谷县| 扎兰屯市| 牟定县| 高平市| 太和县| 子洲县| 巴楚县| 镇沅| 中超| 靖江市| 五原县| 乌恰县| 鲁甸县| 平舆县| 延吉市| 大丰市| 探索| 恩施市| 西丰县| 喀喇沁旗| 读书| 余干县| 蓬安县| 岳阳市| 鄂伦春自治旗|