在Datepicker上更改格式日期(material-ui)

时间:2019-03-10 11:05:00

标签: reactjs datepicker

我想更改Gmaterial-ui-pickers)上的日期格式,但是当我使用k功能时,日期格式不会改变,仍然只显示月和日期,而不是所选的年份。

这是我的代码:

DatePicker

1 个答案:

答案 0 :(得分:2)

用于更改日期格式的道具称为format and takes a string instead of a function

<DatePicker
  margin="normal"
  disableFuture
  openTo="year"
  views={["year", "month", "day"]}
  value={selectedDate}
  onChange={this.handleDateChange}
  maxDate={maxdate}
  format="DD-MM-YYYY"
/>