📜  如何使用 ReactJS 在 firebase 中获取当前日期和时间?

📅  最后修改于: 2022-05-13 01:56:32.256000             🧑  作者: Mango

如何使用 ReactJS 在 firebase 中获取当前日期和时间?

以下方法介绍了如何使用 react 获取 firebase 中的当前日期和时间。我们使用了 firebase 模块来实现这一点。

创建 React 应用程序并安装模块:

  • 第 1 步:使用以下命令创建一个 React-app:

    npx create-react-app myapp
  • 第 2 步:创建项目文件夹(即 myapp)后,使用以下命令移动到该文件夹:

    cd myapp

  • 第 3 步:创建 ReactJS 应用程序后,使用以下命令安装 firebase 模块:

    npm install firebase@8.3.1 --save

项目结构:我们的项目结构将如下所示。

示例:现在实现时间和日期部分。在这里,我们将使用一种名为 Timestamp 的方法来帮助我们获取当前日期和时间。

App.js
import React from 'react';
import firebase from 'firebase';
import {useState} from 'react';
  
function App() {
  // Current state
  const [curr , setCurr] = useState('');
    
  // Function to get time and date
  const getDate = () => {
      const a = firebase.firestore
          .Timestamp.now().toDate().toString();
      setCurr(a);
  }
    
  return (
    
      
        

{curr}

               
    
  ); }    export default App;


运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:

npm start

输出:现在打开浏览器并转到http://localhost:3000/ ,您将看到以下输出: