“Как получить текущую дату в React JS” Ответ

самый простой способ показать текущую дату в React

import React from "react";

// Rearrange date value to get the order you want... also replace / with a cooler separator like ⋅
export default function App() {
  const current = new Date();
  const date = `${current.getDate()}/${current.getMonth()+1}/${current.getFullYear()}`;

  return (
    <div className="App">
      <h1>Current date is {date}</h1>
    </div>
  );
}
Brando the Mando

Как получить текущую дату в React JS

export function getCurrentDate(separator=''){

let newDate = new Date()
let date = newDate.getDate();
let month = newDate.getMonth() + 1;
let year = newDate.getFullYear();

return `${year}${separator}${month<10?`0${month}`:`${month}`}${separator}${date}`
}
Tejas Naik

Отображение даты реагировать

import React from "react";

export default class App extends React.Component {
  state = {
    date: ""
  };

  componentDidMount() {
    this.getDate();
  }

  getDate = () => {
    var date = new Date().toDateString();
    this.setState({ date });
  };

  render() {
    const { date } = this.state;

    return <div>{date}</div>;
  }
}
}

export default App;
Blushing Beaver

Ответы похожие на “Как получить текущую дату в React JS”

Вопросы похожие на “Как получить текущую дату в React JS”

Больше похожих ответов на “Как получить текущую дату в React JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования