【发布时间】:2021-11-23 05:23:21
【问题描述】:
我是 Reactjs 和 MUI 的新手,目前我的日期输入格式是 23/11/2021(DD/MM/YYYY),我该如何更改它以使其显示为 23-nov-2021 (dd -mmm-yyyy) 代替?
这是我当前的代码:
<TextField
name="startDate"
label="Start Date"
InputLabelProps={{ shrink: true, required: true, style: { fontWeight: 700, color:'#1E1E1E', fontFamily:'Open Sans', fontSize:'18px'} }}
type="date"
InputProps={{ style: {border: "1px solid #C2C2C2", padding: 6, width:480, height:51} }}
defaultValue={values.startDate}
onChange={e => handleStartDateChange(e)}
/>
【问题讨论】:
标签: reactjs date material-ui date-format