Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
423 views
in Technique[技术] by (71.8m points)

javascript - How to call firebase Listener to each flatlist rendered component using hooks in react-native

I am trying to access updated value from firebase in every flatlist rendered component using there unique id.

Steps:

  1. I call the api to get the list of data.
  2. Once the complete list rendered into the flatlist.
  3. Then I add the firebase listener in every rendered component to get the updated value of score.

But the problem is that listers works only on last element of list.

and i am using hooks functional component

Here is the need full code please check :

let homeData=firestore().collection("firestore_match_odds_change")

  useEffect(()=>{
   updateOdd(data.uid);
  },[])

   updateOdd = (matchId)=> {
    homeData.doc(matchId)
    .onSnapshot((dataItem) => {
     if (dataItem._data !== undefined) { 
          console.log("print updated match id", dataItem);
      }
    });
  }
  

enter image description here

See In this screenshot only last render element got the data from firebase not others.

Thank you.

question from:https://stackoverflow.com/questions/65920455/how-to-call-firebase-listener-to-each-flatlist-rendered-component-using-hooks-in

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...