想通过ext中的direct提交form表单方式进行提交,代码如下:var f = this.form.getEl().child('form');
CmsDiscoverAction.doSnmpHardwareDiscover(f, function(data, e) {
if (data.success) {
alert("sucess");
} else {
Ext.Msg.alert('信息', data.data);
}
});
后台  @DirectFormPostMethod
public AsyncResponse doSnmpHardwareDiscover(Map<String, String> dataMap, Map<String, FileItem> fileItemsMap){}
 我前台form 表单参数中有个下拉列表的,代码如下:
xtype:'combo',
fieldLabel : '采集网关',
store : store,
editable : false,// 不允许输入
valueField : 'uniqueId',
typeAhead : true,
displayField : 'dispName',
name : 'CmdcId',
mode : 'local',
triggerAction : 'all',
emptyText : '请选择采集网关...',
selectOnFocus : true,
resizable : true,
  anchor : '50%'
, 后台解析的时候,获取的值就是它的名字,而不是他的id,请问这个错误是什么,我想让后台 获取id,应该怎么写?