Firebase TIMESTAMP to date and Time

后端 未结 18 2598
温柔的废话
温柔的废话 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 04:10

    Firebase.ServerValue.TIMESTAMP is the same as new Date().getTime().

    Convert it:

    var timestamp = '1452488445471';
    var myDate = new Date(timestamp).getTime();
    

提交回复
热议问题