使用自定义格式对Antd DatePicker进行反应以进行输入和显示 [英] React Antd DatePicker with custom format for input and for display

查看:172
本文介绍了使用自定义格式对Antd DatePicker进行反应以进行输入和显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我当前正在使用antd的DatePicker组件显示日期,但无法自定义输入格式和显示格式.

I am currently using DatePicker Component of antd for displaying date but not able to customize the input format and display format.

例如:用户将日期输入为mmddyy(112119)格式,datePicker应该将日期显示为2019-11-21.

Eg: user would type the date as mmddyy (112119) format, datePicker should display date as 2019-11-21.

请通过将值设置为datePicker来找到我尝试过的沙盒链接,但它会被format属性覆盖

Please find the sandbox link which I have tried by setting the value to datePicker but its getting overridden by format attribute

https://codesandbox.io/s/wonderful-star-75qjq

推荐答案

检查 onOpenChange 事件并更改 format 属性即可.

Inspect the onOpenChange event and change the format prop can do this.

class DateInput extends React.Component {
  state = { isOpen: false };
  render() {
    return (
      <DatePicker
        onChange={onChange}
        format={this.state.isOpen ? "MMDDYYYY" : "YYYY-MM-DD"}
        onOpenChange={status => {
          this.setState({ isOpen: status });
        }}
      />
    );
  }
}

此处的Codesandbox演示

这篇关于使用自定义格式对Antd DatePicker进行反应以进行输入和显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆