1、前台使用jQuery ajax请求
$.ajax({
url: r_getRolePer.action,
dataType:'json',
data: {userId:1}, //请求的附加参数,用json对象
method:'POST',
success: function(data){
$.messager.alert('消息',data.add,'');
//这里使用的时easyui的格式
},
});
2、在action里面使用response.getWriter()的PrintWriter对象将数据打印到前台
public PrintWriter out()throw
1