我正在为VSCode创建扩展,需要配置包含字段的对象数组: a 和 b 。使用扩展文档docs()中提供的信息,我不清楚,如果我可以定义数组元素的configuration模式,如果我将属性类型设置为"array"
。我尝试将以下代码放在"configuration"
贡献中,但没有成功(我可以在代码中成功检索配置,但是当用户填写数据时没有IDE提示):
"title": "My config",
"properties": {
"array_property": {
"title": "Property",
"type": "array",
"properties": {
"a": {
"type": "string",
"description": "A a"
},
"b": {
"type": "string",
"description": "A b"
}
}
}
}
我尝试用"type": "array"
替换"type": ["array", "object"]
,但它没有改变任何内容。
答案 0 :(得分:7)
使用这样的示例配置
"configuration": {
"type": "object",
"title": "Test configuration",
"properties": {
"mytest.objarrconf": {
"type": "array",
"items": {
"type": "object",
"title": "inner objects",
"properties": {
"name": {
"type": "string",
"description": "Name of inner object"
},
"size": {
"type": "number",
"description": "Size of inner object"
}
}
},
"default": [],
"description": "my test configurations"
}
}
}
它将导致此