我需要访问createdAt变量,通过date()将其转换为真实的日期。但不知何故,我无法通过auth.currentUser.createdAt变量访问它。我该怎么做?
简短的例子
const date = ref('')
date.value = new Date(auth.currentUser.metadata.createdAt)
// 1676566043721 is interpreted as invalid date
字符串
它不起作用,因为new Date与接收到的值同时呈现。
1条答案
按热度按时间w8ntj3qf1#
User
对象没有createdAt
属性。您可能正在寻找auth.currentUser.metadata.creationTime
。