我正在尝试创建一个下拉参数(“选择”类型),它应该包含两组嵌套参数。但是,我不需要将此顶级参数传递给 API。我试过删除这个参数的“名称”属性,但是当模块再次打开时它不记得用户的选择。如何在请求中仅包含嵌套字段,而不包含父字段?
[
{
"type": "select",
"label": "Select",
"options": [
{
"label": "A",
"value": "a",
"nested": [
{
"name": "a",
"type": "text",
"label": "a nested"
}
]
},
{
"label": "B",
"value": "b",
"nested": [
{
"name": "b",
"type": "text",
"label": "b nested"
}
]
}
]
}
]