ajax 调用后台方法,为什么返回值为[object,Object] 100
我写的有错误么??请看图片,都是按照网上说的写的,为什么返回值不是undifine就是object,...
我写的有错误么??请看图片,都是按照网上说的写的,为什么返回值不是undifine就是object,
展开
2个回答
展开全部
obj说明返回的是对象,你可以alert(JSON.stringify(data));来看看内容,也有可能你js哪儿写错了,直接error了,下面是我写的例子
<script>
$.ajax({
type: "post",
url: "Hello.aspx/SayHello",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) {
if (data)
alert(data.d);
else {
alert("null reference!");
}
}
});
</script>
-------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Services;
namespace Storm.Demos
{
public partial class Hello : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e) {
}
[WebMethod]
public static string SayHello() {
return "hello wolrd!";
}
}
}
2017-11-09 · 【免费测试,验证码5秒必达】
北京巴卜技术有限公司
北京巴卜技术有限公司(以下简称巴卜)是具备国际水准的移动商务平台技术和应用方案提供商。自成立以来,巴卜始终 致力于为国内外企业提供具备国际技术水准的移动商务平台及运营服务。
向TA提问
关注
展开全部
如jsp中代码:varxmlhttp;if(window.XMLHttpRequest){xmlhttp=newXMLHttpRequest();}else{xmlhttp=newActiveXObject();}xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4&&xmlhttp.status==200){alert(xmlhttp.responseText);//此处获取返回数据}}xmlhttp.open("GET","service/toupdstatus.htm“,true);xmlhttp.send();后台:HttpServletResponseres=ServletActionContext.getResponse();res.setCharacterEncoding("utf-8");try{res.getWriter().write("Hasbeensuccessfullychanged!");}catch(Exceptione){e.printStackTrace();}到此ok,方法返回类型为void,struts.xml内不用写标签
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询