gpt4 book ai didi

javascript - 如何添加类型 : date for react-jsonschema-form

转载 作者:行者123 更新时间:2023-11-29 19:00:30 27 4
gpt4 key购买 nike

使用这个库:https://github.com/mozilla-services/react-jsonschema-form我想添加一个日期选择器字段,文档中的此处是这样说的:

date: By default, an input[type=date] element is used;
date-time: By default, an input[type=datetime-local] element is used.

然后他们发布了这张照片,我希望我的照片看起来和日期一样:

enter image description here

由于兼容性问题,我使用的是最新版本的 Chrome。

我试着写这样的东西:

date: {
type: "date",
title: "Date"
}

但是我得到了这个错误:

Unsupported field schema for field root_date: Unknown field type date.

检查这个 fiddle :

https://jsfiddle.net/bogdanul11/69z2wepo/91003/

最佳答案

你应该定义 json shema 如下:

"datetime": { // whatever name you want
"type": "string", //Attention!
"format": "date-time"
},

而不是你所做的:

date: {
"type": "date",
"title": "Date"
}

react-jsonschema-form 库提供了非常好的 Playground : https://mozilla-services.github.io/react-jsonschema-form/

关于javascript - 如何添加类型 : date for react-jsonschema-form,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47204422/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com