DWR调用入参为Map的方法

前端之家收集整理的这篇文章主要介绍了DWR调用入参为Map的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

页面中通过DWR技术调用入参为Map的后台方法时,只需要在页面中定义如下格式的函数就可以了

var mapIt = {key1:value1,key2:value2} ;

页面的实现代码

var bigClassSelect = document.getElementById('IMtypeId')
var bigClassValue = bigClassSelect.options[bigClassSelect.selectedIndex].value ;
var mapIt = {'parentId':bigClassValue,'name':smallClassValue} ;
IMMsgTemplate.getDateListAboutIM(mapIt,function(data){
for(var i = 0 ; i < data.length ; i ++ ){
//模板内容
document.getElementById('SHCTPrintFlagId').innerHTML = data[i].contents ;
//业务场景
document.getElementById('businessSceneId').innerHTML = data[i].comm ;
}
})

后台定义方法代码

public List<PSmsEmTemplate> getDateListAboutIM(Map map) { return this.getsqlMapClientTemplate().queryForList("P_SMS_EM_TEMPLATE.getDateListAboutIM",map); }

原文链接:https://www.f2er.com/ajax/165210.html

猜你在找的Ajax相关文章