我正在尝试使用radiogroup创建调查问卷。请让我知道如何循环fieldlabel作为问题和boxlabel作为答案,已经在数据库中。
下面是我尝试循环的代码:
{
fieldLabel: 'question' +i,
xtype: 'radiogroup',
items: [
{
name: 'answer' +i,
inputValue: 'A',
boxLabel: 'A. ANSWER FOR A' +i,
},
{
name: 'answer'+i,
inputValue: 'B',
boxLabel: 'B. ANSWER FOR B'+i,
checked: false,
}
]
}
1条答案
按热度按时间368yc8dk1#
尝试使用radiogroup的预定义项目,如此处所示:https://fiddle.sencha.com/#fiddle/c3h
首先解析数据库中的数据并为问题定义数组数据,然后遍历问题并在入站循环中设置答案。接下来,只需将radiogroup的属性items设置为 data