jquery ajax实现
$.ajax({type: 'POST',
url: 'http://192.168.1.102:8080/csm-rest/systemDictionary/getDdictionaryArea',
data: {areaId:你的地区ID},
dataType:'json'
success: function(data){
//解析服务器返回的数据就可以了
},
error:function(){
alert('error')
}
})
jquery ajax实现
$.ajax({type: 'POST',
url: 'http://192.168.1.102:8080/csm-rest/systemDictionary/getDdictionaryArea',
data: {areaId:你的地区ID},
dataType:'json'
success: function(data){
//解析服务器返回的数据就可以了
},
error:function(){
alert('error')
}
})