Firebase TIMESTAMP to date and Time

后端 未结 18 2588
温柔的废话
温柔的废话 2020-11-27 03:39

I am using firebase for my chat application. In chat object I am adding time stamp using Firebase.ServerValue.TIMESTAMP method.

I need to show the messa

18条回答
  •  囚心锁ツ
    2020-11-27 03:43

    Iterating through this is the precise code that worked for me.

    querySnapshot.docs.forEach((e) => {
       var readableDate = e.data().date.toDate();
       console.log(readableDate);
    }
    
    

提交回复
热议问题