extjs使用数据库中的fieldlabel和boxLabel循环radiogroup

unguejic  于 2022-11-04  发布在  其他
关注(0)|答案(1)|浏览(115)

我正在尝试使用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,
                    }
                ]
            }
368yc8dk

368yc8dk1#

尝试使用radiogroup的预定义项目,如此处所示:https://fiddle.sencha.com/#fiddle/c3h
首先解析数据库中的数据并为问题定义数组数据,然后遍历问题并在入站循环中设置答案。接下来,只需将radiogroup的属性items设置为 data

相关问题