如何在 ANTD Calendar 组件中获取选定的日期?

How to get selected date in ANTD Calendar component?

如何在用户点击日历组件时选择日期?

暂不支持,跟踪https://github.com/ant-design/ant-design/issues/3042

您正在寻找 onSelect。请参阅文档 here 要查看所选日期,请执行以下操作。

 <Calendar value={value} onSelect={(e)=>{console.log(e)}}/>

e 是在选择任何日期时传递给函数的值。以下是日志的示例输出

_d: [date] Thu Jan 05 2017 00:00:00 GMT+0530 (India Standard Time)
_f: "YYYY-MM-DD"
_i: "2017-01-25"
_isAMomentObject: true
_isUTC: false
_isValid: true

_locale: Object

_pf: Object

__proto__: Object