Ajax调用action后,jsp页面怎么获取action的返回数据?action要改什么吗?

2024-12-26 12:27:58
推荐回答(3个)
回答1:

List数组最好换为json的,$.post("action路径",function(data返回的数据){
你最好弹一下,看是不是你要的数据
eval("var mydata="+data);
再用each循环就好
});

回答2:

$.ajax({
type: "post",
url : "/manager/mobileSet.do?method=replaceCss",
dataType:'json',
data:'colorType='+color,
success: function(result){
alert(result); //这里我想接收到action里边的字符串,怎么写 ?
}
});

后台java代码:
String result = “xxxxxxxxxxxxxxx”;
PrintWriter out = this.servletResponse.getWriter();
out.write(result);

回答3:

没有返回list 数据的...只能是xml 或者json.然后在前台解析