反应-显示Firestore时间戳
我试图弄清楚如何在React应用程序中显示Firestore时间戳。 我有一个Firestore文档,其中的字段名为createdAt。 我正在尝试将其包含在输出列表中(在此处提取相关位,以便您不必通读整个字段列表)。 componentDidMount() { this.setState({ loading: true }); this.unsubscribe = this.props.firebase .users() .onSnapshot(snapshot => { let users = []; snapshot.forEach(doc => users.push({ ...doc.data(), uid: doc.id }), ); this.setState({ users, loading: false, }); }); } componentWillUnmount() { this.unsubscribe(); } render() { const { users, loading } = this.state; return ( …