我想基于服务中提供的后端数据生成UI。
我的服务如下所示:
{
"ControlData": {
"results": [{
"Label": "Gender?",
"Type": "COMBOBOX"
}],
"ControlValues": {
"results": [{
"Key": "M",
"Value": "Male"
},
{
"Key": "F",
"Value": "Female"
}
]
}
}
}
在这里,我想用服务中提供的标签和值动态生成一个ComboBox控件。
请提供任何示例或参考给我。
答案 0 :(得分:3)