我有一个表格,包括一个无线电组,例如
{
xtype: 'radiogroup',
fieldLabel: 'group',
name: 'a',
items: [{
boxLabel: '1',
name: 'a',
inputValue: '1'
}, {
boxLabel: '2',
name: 'a',
inputValue: '2',
}, {
boxLabel: '3',
name: 'a',
inputValue: '3'
}]
}
我用
form.load({
url: 'example.php',
....});
我的 json 看起来像
{
success:true ,
data : {
a:'2'
}
}
但没有任何工作。怎么解决 谢谢