怎么查看ajax后台返回的数据

 我来答
陈颠颠君
2018-04-11 · 超过27用户采纳过TA的回答
知道答主
回答量:106
采纳率:0%
帮助的人:15.4万
展开全部
success: function (data) {
alert(JSON.stringify(data));

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
中是鱼0S
2017-01-01 · 超过215用户采纳过TA的回答
知道小有建树答主
回答量:1273
采纳率:0%
帮助的人:367万
展开全部
如jsp中代码:
var xmlhttp;
if(window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}else{
xmlhttp=new ActiveXObject();
}
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4 && xmlhttp.status==200){
alert(xmlhttp.responseText);//此处获取返回数据
}
}
xmlhttp.open("GET","service/toupdstatus.htm“,true);
xmlhttp.send();
后台:HttpServletResponse res=ServletActionContext.getResponse();
res.setCharacterEncoding("utf-8");
try {
res.getWriter().write("Has been successfully changed!");
} catch (Exception e) {
e.printStackTrace();
}
到此ok,方法返回类型为void,struts.xml内不用写<result/>标签
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式