Antd Datepicker 日期格式
我从 API 接收数据并将其立即传递到
Error: t.clone is not a function [...]
如何修复它?我可以在将日期传递到
中的
之前格式化日期吗?
I'm receiving data from API and passing it immediatly to <Form>
initialValue
. But registerDate
is in string format like "01-01-2022" and when <Form.Item>
is passing it into <DatePicker>
i've got an error:
Error: t.clone is not a function [...]
How can I repair it? Can I format the date before passing it into <Datepicker>
in <Form.Item>
?
Code example here: https://stackblitz.com/edit/react-cxyphe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来 Form.Item 中的名称导致了问题。如果您从第 20 行删除 name,它应该呈现 datePicker。 AntD 还有一些在表单中使用日期选择器的示例。
It looks like the name in Form.Item is causing the problem. If you remove name from line 20 it should render the datePicker. AntD also some examples of using a date picker in a form.