我有一个窗口,里面有像
items:{
xtype:'form',
items: [{
xtype: 'numberfield',
fieldLabel: '1',
name: 'va[]'
},{
xtype: 'textfield',
fieldLabel: '2',
name: 'va[]'
},{
xtype: 'textfield',
fieldLabel: '3',
name: 'va[]'
}]
},
我使用加载表单将数据从服务器获取到我的表单
var form = win.down('form').getForm();
form.load({
url: 'load.php',
success:function(form, action){
win.show();
}
});
我的 json 看起来像
{"success":true,"data":{"va":["1","2","3"]}}
但是加载成功后我的表单是空白的(未设置值)
怎么做 谢谢