React - 显示 firestore 时间戳

IT技术 javascript reactjs firebase google-cloud-firestore unix-timestamp
2021-04-08 05:00:37

我想弄清楚如何在react应用程序中显示 firestore 时间戳。

我有一个名为 createdAt 的字段的 firestore 文档。

我试图将它包含在输出列表中(在此处提取相关位,以便您不必通读整个字段列表)。

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 (
        <div>
    {loading && <div>Loading ...</div>}

            {users.map(user => (

                <Paragraph key={user.uid}>  

       <key={user.uid}>  
       {user.email}
       {user.name}
       {user.createdAt.toDate()}
       {user.createdAt.toDate}
       {user.createdAt.toDate()).toDateString()}

唯一不会呈现的属性是日期。

上述每一次尝试都会产生一个错误,说明:

类型错误:无法读取未定义的属性“toDate”

我看过这篇文章这篇文章这篇文章,还有这篇文章和其他类似的文章,这表明 toDate() 应该可以工作。但是 - 这个扩展给我抛出了一个错误 - 包括当我尝试 toString 扩展时。

我知道它知道 firestore 中有东西,因为当我尝试 user.createdAt 时,我收到一条错误消息,说它找到了一个包含秒的对象。

以下面的 Waelmas 为例,我尝试将该字段的输出记录为:

this.db.collection('users').doc('HnH5TeCU1lUjeTqAYJ34ycjt78w22').get().then(function(doc) {
  console.log(doc.data().createdAt.toDate());

}

我也尝试将其添加到我的 map 语句中,但收到一条错误消息,指出 user.get 不是函数。

{user.get().then(function(doc) {
                    console.log(doc.data().createdAt.toDate());}
                  )}

它生成与上述相同的错误消息。

在此处输入图片说明

下一次尝试

在尝试找到一种方法在 Firestore 中记录日期以允许我读回它时出现的一件奇怪的事情是,当我以一种形式更改我的提交处理程序以使用此公式时:

handleCreate = (event) => {
    const { form } = this.formRef.props;
    form.validateFields((err, values) => {
      if (err) {
        return;
      };
    const payload = {
    name: values.name,
    // createdAt: this.fieldValue.Timestamp()
    // createdAt: this.props.firebase.fieldValue.serverTimestamp()

    }
    console.log("formvalues", payload);
    // console.log(_firebase.fieldValue.serverTimestamp());


    this.props.firebase
    .doCreateUserWithEmailAndPassword(values.email, values.password)
    .then(authUser => {
    return this.props.firebase.user(authUser.user.uid).set(
        {
          name: values.name,
          email: values.email,
          createdAt: new Date()
          // .toISOString()
          // createdAt: this.props.firebase.fieldValue.serverTimestamp()

        },
        { merge: true },
    );
    // console.log(this.props.firebase.fieldValue.serverTimestamp())
    })
    .then(() => {
      return this.props.firebase.doSendEmailVerification();
      })
    // .then(() => {message.success("Success") })
    .then(() => {
      this.setState({ ...initialValues });
      this.props.history.push(ROUTES.DASHBOARD);

    })


  });
  event.preventDefault();
    };

这可以在数据库中记录日期。

firestore 条目的形式如下所示:

在此处输入图片说明

我正在尝试在此组件中显示日期:

class UserList extends Component {
  constructor(props) {
    super(props);

    this.state = {
      loading: false,
      users: [],
    };
  }

  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 (
      <div>
          {loading && <div>Loading ...</div>}

          <List
            itemLayout="horizontal"
            dataSource={users}

            renderItem={item => (
              <List.Item key={item.uid}>
                <List.Item.Meta
                  title={item.name}
                  description={item.organisation}
                />
                  {item.email}
                  {item.createdAt}
                  {item.createdAt.toDate()}
                  {item.createdAt.toDate().toISOString()}

              </List.Item>
            // )
          )}
          />

      </div>
    );
  }
}

export default withFirebase(UserList);

当我尝试回读它时 - 使用:

{item.email}

错误信息如下:

错误:对象作为 React 子对象无效(找到:时间戳(秒 = 1576363035,纳秒 = 52000000))。如果您打算渲染一组子项,请改用数组。在项目中(在 UserIndex.jsx:74)

当我尝试使用这些尝试中的每一个时:

{item.createdAt}
{item.createdAt.toDate()}
{item.createdAt.toDate().toISOString()}

我收到一条错误消息:

类型错误:无法读取未定义的属性“toDate”

基于回读记录在其他字段中的同一文档中的条目的能力,我希望这些条目中的任何一个都能产生输出——即使它没有按照我想要的方式进行格式化。那不会发生。

下一次尝试

以 Waelmas 为例,我尝试按照说明进行操作,但在第一步中我们没有得到相同的响应。在 Walemas 基于 .toDate() 扩展名获取输出的地方,我收到一条错误消息,说 toDate() 不是函数。

与 Firebase 文档一致,我尝试过:

    const docRef = this.props.firebase.db.collection("users").doc("HnH5TeCU1lUjeTqAYJ34ycjt78w22");

docRef.get().then(function(docRef) {
    if (doc.exists) {
        console.log("Document createdAt:", docRef.createdAt.toDate());

} })

这会产生一串语法错误,我找不到解决方法。

下一次尝试

然后我尝试制作一个新表单,看看是否可以在没有用户表单的身份验证方面进行探索。

我有一个将输入视为:

this.props.firebase.db.collection("insights").add({
            title: title,
            text: text,
            // createdAt1: new Date(),
            createdAt: this.props.firebase.fieldValue.serverTimestamp()
        })

在前面的表单中, new Date() 尝试在数据库中记录日期,在本例中, createdAt 和 createdAt1 的两个字段都生成相同的数据库条目:

在此处输入图片说明

<div>{item.createdAt.toDate()}</div>
                    <div>{item.createdAt.toDate()}</div>

当我尝试输出日期的值时,第一个会产生一个错误:

对象作为 React 子对象无效(找到:Sun Dec 15 2019 21:33:32 GMT+1100(澳大利亚东部夏令时间))。如果您打算渲染一组子项,请改用数组

第二个生成错误说:

类型错误:无法读取未定义的属性“toDate”

我对下一步尝试的想法感到困惑。

我看到这篇文章表明以下内容可能会做一些有用的事情:

                {item.createdAt1.Date.valueOf()}

它没有。它呈现一个错误,说:

类型错误:无法读取未定义的属性“日期”

这篇文章似乎和我有同样的问题,但没有讨论他们如何设法显示他们存储的日期值。

这篇文章似乎被困在数组错误消息上,但似乎已经弄清楚如何使用 createdAt.toDate() 显示日期

6个回答

经过一些讨论,我们发现 OPs 用户对象中的时间戳可以这样呈现:

render() { 
const { users, loading } = this.state; 

return ( 
    <div> 
        {loading && <div>Loading ...</div>} 

        {users.map(user => ( 

            <Paragraph key={user.uid}> 

                <key={user.uid}> 
                    {user.email} 
                    {user.name} 
                    {new Date(user.createdAt.seconds * 1000).toLocaleDateString("en-US")}

我在一个虚拟的 React 项目中重新创建了您的示例,并收到了与预期相同的错误。

错误:对象作为 React 子对象无效

我能够使用以下方法正确呈现它,这也适用于您:

{new Date(user.createdAt._seconds * 1000).toLocaleDateString("en-US")}

其中,对于我的示例时间戳,呈现为:

12/30/2019


确保您使用的是保存到 Firestore 的时间戳:

createdAt: this.props.firebase.Timestamp.fromDate(new Date())

注意:这是假设您的实例firebase.firestore()位于this.props.firebase在其他示例中,您使用 this.props.firebase,但这些方法看起来像是您自己创建的辅助方法。

获取此值时,它将是一个具有两个属性的对象——_seconds_nanoseconds

请务必包含下划线。如果您使用createdAt.seconds它不起作用,则必须是createdAt._seconds.


我尝试过的其他事情:

user.createdAt.toDate()抛出toDate() is not a function

user.createdAt 投掷 Error: Objects are not valid as a React child

new Date(user.createdAt._nanoseconds) 呈现错误的日期

我能做的是使用以下方法保存日期(如上所示):createdAt: this.props.firebase.fieldValue.serverTimestamp(),
2021-05-29 05:00:37
2021-05-29 05:00:37
嗨 - 感谢您的建议。我试过这个并得到一个错误说:类型错误:无法读取未定义的属性“时间戳”
2021-06-10 05:00:37
我也试过:createdAt: firebase.firestore.fieldValue.serverTimestamp().fromDate(new Date()),它返回一个错误,内容为:TypeError:无法读取未定义的属性“fieldValue”
2021-06-15 05:00:37
虽然这对我不起作用,但我很想了解您是如何想到尝试使用您使用的格式的。它不像文档中显示的那样。如果我能了解你是如何发现对你有用的东西,它可能会让我找到一种对我有用的方法(我不明白为什么这些对每个人都不一样——但我需要新的想法来尝试)。再次感谢您的帮助。
2021-06-15 05:00:37

当您从 Firestore 获取时间戳时,它们属于以下类型:

在此处输入图片说明

要将其转换为普通时间戳,您可以使用 .toDate() 函数。

例如,对于像下面这样的文档:

在此处输入图片说明

我们可以使用类似的东西:

db.collection('[COLLECTION]').doc('[DOCUMENT]').get().then(function(doc) {
  console.log(doc.data().[FIELD].toDate());
});

输出将类似于:

2019-12-16T16:27:33.031Z

现在要进一步处理该时间戳,您可以将其转换为字符串并使用正则表达式根据您的需要对其进行修改。

例如:(我在这里使用 Node.js)

db.collection('[COLLECTION]').doc('[DOCUMENT]').get().then(function(doc) {
  var stringified = doc.data().[FIELD].toDate().toISOString();
  //console.log(stringified);
  var split1 = stringified.split('T');
  var date = split1[0].replace(/\-/g, ' ');
  console.log(date);
  var time = split1[1].split('.');
  console.log(time[0]);
});

会给你一个这样的输出:

在此处输入图片说明

不 - 控制台日志不起作用 - 它也会产生错误 - 但日期被记录在表的 createdAt 字段中 - 现在我只是想读回它。我在这里创建了一篇文章,解释了我如何获得要记录的日期(不是根据 firebase 文档):stackoverflow.com/questions/59257755/...
2021-05-24 05:00:37
谢谢你的例子。我在尝试中具有相同的结构。它可以返回文档中的所有字符串值,但不返回日期。相反,它会生成我上面发布的消息的错误。这没有任何意义。我尝试添加 toISOString() 扩展名,但它不会更改错误消息(应该只是格式化)
2021-06-02 05:00:37
我尝试按照官方文档创建时间戳。我无法让它工作。我偶然发现了另一种记录日期的方法,现在无法读回输出!太令人沮丧了。无论如何,感谢您尝试提供帮助。
2021-06-07 05:00:37
您可以在控制台中记录时间戳的值吗?只是为了确认它是正确类型的 Firestore 时间戳。@梅尔
2021-06-13 05:00:37
由于您采用的方法与官方文档推荐的方法不同,因此我不确定到底出了什么问题。您首先创建和推送时间戳的方式似乎有问题。当您将时间戳存储到 Firestore 时,它​​需要是我在回答开头提到的格式的对象。这样它就会被识别为有效的时间戳,然后可以与 .toDate() 一起使用。Firestore.Timestamp.now() 会给你一个正确格式的时间戳来检查它。@梅尔
2021-06-22 05:00:37

因此,firestore 将日期存储为具有秒和纳秒的对象。如果您想要创建用户的时间,那么您将引用user.createdAt.nanoseconds. 这将返回一个 unix 时间戳。

你想如何在你的应用程序中显示日期?如果你想获得一个日期对象,那么你可以将时间戳传递给一个像这样的日期构造函数new Date(user.createdAt.nanoseconds)我个人喜欢使用date-fns库来处理时间。

firestore中显示的条目是我附上的照片。这是条目:this.props.firebase.fieldValue.serverTimestamp()
2021-05-23 05:00:37
听起来您已将时间戳函数推送到数据库,而不是实际的时间戳。你是如何设置时间戳的?firestore.FieldValue.serverTimestamp()
2021-06-02 05:00:37
createdAt 记录了一长串下拉菜单。我在 firestore 的字段中找不到包含日期的文件。第一部分是: createdAt: ServerTimestampFieldValueImpl _methodName: "FieldValue.serverTimestamp" proto : FieldValueImpl 构造函数: ƒ ServerTimestampFieldValueImpl() 实例: ServerTimestampFieldValueImpl _methodName: "FieldValue.serverTimestamp" proto : FieldValueImpl 构造函数: ƒ ServerTimestamp(methodFieldValueImpl) "ServerTimestampFieldValueImpl() 实例FieldValue.serverTimestamp"} 参数:(...) 调用者:(...)
2021-06-08 05:00:37
你能登录 createdAt 并分享吗?鉴于数据的异步性质,您可能只需要像这样返回它user.createdAt && new Date(user.createdAt.nanoseconds)Date-fns 不会帮助解决这个问题,它只是一个方便的库,用于在您拥有日期后显示日期。
2021-06-10 05:00:37
谢谢 - 我试过这个建议。它返回一个错误,指出:TypeError:无法读取未定义的属性“纳秒”。我现在去看看你推荐的图书馆
2021-06-11 05:00:37

如何将日期发送到 Firestore:

import firebase from 'firebase/app';

// ..........
// someObject is the object you're saving to your Firestore.

someObject.createdAt: firebase.firestore.Timestamp.fromDate(new Date())

如何回读:

function mapMonth(monthIndex) {
  const months = {
    0: 'jan',
    1: 'feb',
    2: 'mar',
    3: 'apr',
    4: 'may',
    5: 'jun',
    6: 'jul',
    7: 'aug',
    8: 'sep',
    9: 'oct',
    10: 'nov',
    11: 'dec'
  };
  return months[monthIndex];
}

// ..........
// Here you already read the object from Firestore and send its properties as props to this component.

return(
    <LS.PostDate_DIV>
      Published on {mapMonth(props.createdAt.toDate().getMonth()) + ' '}
      of {props.createdAt.toDate().getFullYear()}
    </LS.PostDate_DIV>
  );
}

基本上,当你这样做时,你会createdAt.toDate()得到一个 JS Date 对象。

我一直都是这样用的!

来自:https : //cloud.google.com/firestore/docs/manage-data/add-data

在此处输入图片说明

这将根据用户的系统日期创建数据。如果您需要确保所有内容都按时间顺序存储(您的用户系统设置的错误系统日期没有任何错误),您应该使用服务器时间戳。日期将使用您的 Firestore 数据库内部日期系统设置。

在此处输入图片说明

谢谢你,但我试图克服的麻烦是我找不到一种方法来显示数据库中记录的日期。我不断收到我分享的那种错误。
2021-05-30 05:00:37

使用具有createdAt属性集的用户的文档 ID ,尝试以下操作:

const docRef = db.collection("users").doc("[docID]");

docRef.get().then(function(docRef) {
  if (docRef.exists) {
     console.log("user created at:", docRef.data().createdAt.toDate());
  }
})

.data()在访问文档的属性之前调用该方法并不重要

请注意,如果您访问docRef.data().createdAt.toDate()了该用户的createdAt属性为没有设置,你会得到TypeError: Cannot read property 'toDate' of undefined

因此,如果您的集合中有任何createdAt未定义属性的用户您应该实现一个逻辑来检查用户是否拥有该createdAt属性,然后再获取它。你可以这样做:

//This code gets all the users and logs it's creation date in the console
docRef.get().then(function(docRef) {
  if (docRef.exists && docRef.data().createdAt) {
      console.log("User created at:", docRef.data().createdAt.toDate());
  }
})
正如您在上面看到的,我确实在对文档字段的请求中使用了 data()。如果我不这样做,其他字段将不会呈现。具体问题是时间戳,它不呈现。我所做的尝试之一,也是我在上面列出的,包括使用 toDate() 扩展的尝试。它不起作用 - 由于上述原因。无论如何感谢您的时间。
2021-06-10 05:00:37