“REACTJS Wyświetlacz daty” Kod odpowiedzi

Wyświetlanie daty reakcji

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

REACTJS Wyświetlacz daty

<p>
  	//Display the day (put 0 if day is from 1 to 9) 09.01.2022
	{("0" + row.date.toDate().getDate()).slice(-2).toString()}
    //Separator (can be "/") as you want
    .
    //Display the month (put 0 if month is from 1 to 9) 09.01.2022
    {("0" + (row.date.toDate().getMonth() + 1)).slice(-2).toString()}
	//Separator (can be "/") as you want
    .
    //Display the year
    {row.date.toDate().getFullYear().toString()}
<p>
  
Displayed : 09.01.2022
Swiss IT knive

Odpowiedzi podobne do “REACTJS Wyświetlacz daty”

Pytania podobne do “REACTJS Wyświetlacz daty”

Więcej pokrewnych odpowiedzi na “REACTJS Wyświetlacz daty” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu