保存FCM数据库消息的时间戳

时间:2017-04-07 10:14:28

标签: javascript firebase web firebase-cloud-messaging

所以我使用教程中的以下步骤来理解fcm,我想知道是否还有来自发送/接收消息的时间戳保存?

Google FCM Tutorial Page 8

 this.messagesRef.push({
      name: currentUser.displayName,
      text: this.messageInput.value,
      photoUrl: currentUser.photoURL || '/images/profile_placeholder.png'
    })

正如您在此示例代码中看到的,我推送名称,文本和照片,但我也想要时间。

1 个答案:

答案 0 :(得分:1)

使用getTime()方法,它返回1970年1月1日午夜到指定日期之间的毫秒数。

时间:新日期()。getTime()

示例代码:

this.messagesRef.push({
   name: currentUser.displayName,
   text: this.messageInput.value,
   photoUrl: currentUser.photoURL || '/images/profile_placeholder.png',
   time: new Date().getTime()
})