如何在Vue3中从Firebase Auth获取注册日期?

3phpmpom  于 2023-08-07  发布在  其他
关注(0)|答案(1)|浏览(113)

我需要访问createdAt变量,通过date()将其转换为真实的日期。但不知何故,我无法通过auth.currentUser.createdAt变量访问它。我该怎么做?
简短的例子

const date = ref('')
date.value = new Date(auth.currentUser.metadata.createdAt)
                //  1676566043721 is interpreted as invalid date

字符串
它不起作用,因为new Date与接收到的值同时呈现。

w8ntj3qf

w8ntj3qf1#

User对象没有createdAt属性。您可能正在寻找auth.currentUser.metadata.creationTime

相关问题