我正在研究 rjsf 文档,我additionalItems
对 array docs 的部分感到困惑。
以下是文档中的示例代码:
const Form = JSONSchemaForm.default;
const schema = {
type: "array",
items: {
type: "string"
},
additionalItems: {
type: "boolean"
}
};
ReactDOM.render((
<Form schema={schema} />
), document.getElementById("app"));
如果删除 ,呈现的表单似乎表现完全相同additionalItems
,那么目的是什么?我想它有一个,因为它在文档中明确提出,但我无法弄清楚:)