本文主要是介绍SpringMVC注解类@RequestParam结合extjs的使用示例。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
SpringMVC注解类@RequestParam结合extjs的使用示例。
java:
@ResponseBody
@RequestMapping(value = "/address", method = RequestMethod.POST)
public List<Map<String,String>> address(@RequestParam("c") String column,
@RequestParam(value="parentValue",required = false) String parentValue,
@RequestParam(value="emptyOption",required = false) String emptyOption) {
Map<String,String> params = new HashMap<String,String>();
params.put("tableName", "ADDRESS");
params.put("columnName", column); //此处column的值为:PROVINCE
extjs:
//省 从字典中取的下拉框
Ext.define('cdkj.store.common.ProvinceComboStore', {
extend : 'Ext.data.Store',
storeId: 'provinceStore',
model : 'cdkj.model.common.ComboxModel',
autoLoad:true,
proxy : {
type : 'ajax',
url : base + '/com/sys/dictionary/address.html',
extraParams:{
t:'ADDRESS',
c:'PROVINCE'
},
reader : {
type : 'json',
successProperty : 'success'
},
actionMethods : {
read : 'POST'
}
}
});
这篇关于SpringMVC注解类@RequestParam结合extjs的使用示例。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!