如何在React Native中从Firestore日期库时间戳获取秒数
我尝试过
const expried = this.props.my.expireDate
alert(expried)
console.log(expried)
this.props.expireDate
是日期数据库中具有Firebase时间戳记的字段名称
const expried = this.props.my.expireDate.Timestamp.seconds
alert(expried)
console.log(expried)
第一个示例的控制台日志为show
Timestamp {
nanoseconds: 0,
seconds: 1562524200
}
第二个示例抛出未定义的错误