是我可以在firebase(firestore)中向所有用户显示图像的方法

时间:2020-01-05 23:20:46

标签: firebase react-native expo

需要在列表中显示用户的个人资料图片并从Firestore检索数据。 考虑下面的代码。

   user: {},
};

unsubscribe = null;

componentDidMount() {
  const user = this.props.uid || Fire.shared.uid;

   this.unsubscribe = Fire.shared.firestore
       .collection("users")
       .doc(user)
       .onSnapshot(doc => {
           this.setState({user: doc.data()});
       });

}
//one of the methods in may firestore class.
 get uid() {
       return (firebase.auth().currentUser || {}).uid;
    }



0 个答案:

没有答案