反应-显示Firestore时间戳


10

我试图弄清楚如何在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 (
        <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()}

唯一无法呈现的属性是日期。

上面的每一次尝试都会产生一个错误,指出:

TypeError:无法读取未定义的属性“ 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子对象无效(找到:Timestamp(秒= 1576363035,纳秒= 52000000))。如果要渲染子级集合,请改用数组。在Item中(在UserIndex.jsx:74处)

当我尝试使用以下每种尝试时:

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

我收到一条错误消息:

TypeError:无法读取未定义的属性“ 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()
        })

在前一种形式中,新的Date()尝试在数据库中记录日期,在此示例中,createdAt和createdAt1的两个字段都生成相同的数据库条目:

在此处输入图片说明

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

当我尝试输出日期的值时,第一个生成一个错误,提示:

对象不是有效的React子对象(发现:Sun Dec 15 2019 21:33:32 GMT + 1100(Australian Eastern Daylight Time))。如果要渲染子级集合,请改用数组

第二个生成错误说:

TypeError:无法读取未定义的属性“ toDate”

我对接下来要尝试的方法有想法。

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

                {item.createdAt1.Date.valueOf()}

没有。它将显示一个错误,指出:

TypeError:无法读取未定义的属性“日期”

这篇文章似乎和我有同样的麻烦,但是没有涉及他们如何设法显示存储的日期值。

这篇文章似乎陷入了数组错误消息,但是似乎已经弄清楚了如何使用createdAt.toDate()显示日期。

Answers:


1

经过一些讨论,我们发现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:firebase.firestore.fieldValue.serverTimestamp()。fromDate(new Date()),它返回一个错误,指出:TypeError:无法读取未定义的属性“ fieldValue”
Mel

尽管这对我不起作用,但我很想了解您是如何想到尝试使用的格式的。它没有显示在文档中。如果我能了解您如何发现对您有用的东西,那么它可能会让我找到对我有用的方法(我不明白为什么这些对每个人都不一样,但是我需要新的想法来尝试)。再次感谢您的帮助。
梅尔

我能做的就是使用以下方法保存日期(如上所示):createdAt:this.props.firebase.fieldValue.serverTimestamp(),
梅尔


5

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

在此处输入图片说明

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

例如,对于如下文档:

在此处输入图片说明

我们可以使用类似:

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

输出将是这样的:

2019-12-16T16:27:33.031Z

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

例如:(我在这里使用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]);
});

将为您提供如下输出:

在此处输入图片说明


谢谢你的例子。我的尝试结构相同。它可以返回文档中的所有字符串值,但不返回日期。相反,它在我上面发布的消息中产生了错误。这没有任何意义。我尝试添加toISOString()扩展名,但它不会更改错误消息(应该只是格式化)
梅尔(Mel

您可以在控制台中记录时间戳记的值吗?只是为了确认它是正确的Firestore时间戳类型。@Mel
Waelmas

否-控制台日志不起作用-它也会产生错误-但日期会记录在表的createdAt字段中-现在我只是想将其读回。我创建了一个帖子,说明如何在此处获取记录日期的信息(并非根据firebase文档):stackoverflow.com/questions/59257755/…–
Mel

由于您采用的方法与官方文档建议的方法不同,因此我不确定到底出了什么问题。似乎您最初创建和推送时间戳的方式存在某种错误。将时间戳存储到Firestore时,它必须是我在回答开头提到的格式的对象。这样,它将被识别为有效时间戳,然后可以与.toDate()一起使用。Firestore.Timestamp.now()将为您提供正确格式的时间戳以将其签出。@Mel
Waelmas

我尝试按照官方文档创建时间戳。我无法正常工作。我偶然发现了一种记录日期的替代方法,现在无法读回输出!真令人沮丧 无论如何,谢谢您的帮助。
梅尔

2

因此,firestore将日期存储为秒和纳秒的对象。如果您需要创建用户的时间,则可以参考user.createdAt.nanoseconds。这将返回unix时间戳。

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


谢谢-我尝试了这个建议。它返回一条错误消息:TypeError:无法读取未定义的属性“纳秒”。我将看一下您现在建议的图书馆
梅尔

您可以登录createdAt并分享吗?鉴于数据的异步性质,您可能只需要像这样返回它user.createdAt && new Date(user.createdAt.nanoseconds)。Date-fns不会解决这个问题,只有一个方便的库,用于在显示日期后显示日期。
乔什·皮特曼

createdAt记录一长串下拉菜单。我在Firestore中找不到包含日期的字段。第一部分是:createdAt:ServerTimestampFieldValueImpl _methodName:“ FieldValue.serverTimestamp” 原型:FieldValueImpl构造函数:▪ServerTimestampFieldValueImpl()实例:ServerTimestampFieldValueImpl _methodName:“ FieldValue.serverTimestamp” 原型:FieldValueImpl构造函数:ƒServerTimestampFieldValueImpl FieldValue.serverTimestamp“}参数:(...)调用方:(...)
梅尔

听起来您已经将时间戳功能推入了数据库,而不是实际的时间戳。您如何设置时间戳?firestore.FieldValue.serverTimestamp()
乔什·皮特曼

firestore中显示的条目是我附加的照片。这是条目:this.props.firebase.fieldValue.serverTimestamp()
梅尔

2

如何将日期发送到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 DB内部日期系统进行设置。

在此处输入图片说明


谢谢您,但是我要克服的麻烦是我无法找到一种方法来显示数据库中记录的日期。我不断遇到自己分享过的错误。
梅尔(Mel)

2

对于确实具有该createdAt属性设置的User的文档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()扩展的尝试。由于上述原因,它不起作用。无论如何,谢谢您的时间。
梅尔

0

过去,我遇到过一些问题,即嵌套对象属性无法在item.someProp被视为对象的列表中正确呈现,但item.someProp.someSubProp无法使用someSubPropin 的值来解决item.someProp

因此,为了解决这个问题,为什么在创建用户对象时不将Timestamp评估为纯日期对象(或所需的显示格式)?

this.unsubscribe = this.props.firebase
  .users()
  .onSnapshot(snapshot => {
    let users = [];

    snapshot.forEach(doc =>
      let docData = doc.data();
      docData.createdAt = docData.createdAt.toDate();
      users.push({ ...docData, uid: doc.id }),
    );

    this.setState({
      users,
      loading: false,
    });
  });

另外值得一提的是既DocumentSnapshot#data()DocumentSnapshot#get()接受对象,指定如何处理还未最终确定FieldValue.serverTimestamp()值。默认情况下,尚未完成的值将为null。使用{ serverTimestamps: "estimate"}会将这些空值更改为估计值。
samthecodingman,

嗨-感谢您的建议。我想尝试一下,但我不理解它-或如何尝试实现它。对于提出此建议时要采用的原则是否有约定。如果可以找到有关该方法的文献,我将尝试弄清楚您的想法是如何工作的,以便可以在我的代码中进行尝试。
梅尔

我没有任何特别的资源,因为多年来查看其他StackOverflow问题后就将其选中。
samthecodingman,

感谢分享。我今晚会读这些书
梅尔
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.