上传者: 38677234
|
上传时间: 2022-03-11 14:35:02
|
文件大小: 31KB
|
文件类型: -
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