react-jsonschema-form在使用anyOf / oneOf属性时给出错误

时间:2017-07-01 14:12:49

标签: javascript json reactjs jsonschema

以下JSON模式提供错误"无效的根对象字段配置:无法将undefined或null转换为object。"

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "definitions": {},
    "id": "http://example.com/example.json",
    "type": "object",
    "oneOf": [
        {
            "properties": {
                "foo": {
                    "id": "/properties/boo",
                    "type": "string"
                }
            }
        }
    ]
}

有人可以解决错误吗?

0 个答案:

没有答案