2017-04-08 15 views

答えて

0

私はコンストラクタから反応ライフサイクルに移行しました。正常に動作しています。誰かが必要な場合は、ここにコードがあります。

componentWillMount() { 
    AsyncStorage.getItem('parentUid') 
     .then((data) => { 
     this.setState({ pUID: data },() => { 
      this.itemsRef = this.getRef().child(`Stores/${this.state.pUID}/`); 
     }); 
     }) 
     .then(() => { 
     this.connectedRef.on('value', this.handleValue); 
     }); 
    } 
関連する問題