ajax + aspx 在ie下遇到的问题,在火狐测试没问题
js代码:$.get("handler/Handler.ashx",{command:"setsession",session:"floor",value:"2"},fu...
js代码:
$.get("handler/Handler.ashx", { command: "setsession", session: "floor", value: "2" }, function (data) {
alert(data);
});
handler.ashx代码:
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
if (context.Request["command"] != null)
{
string command = context.Request["command"].ToString();
System.Reflection.MethodInfo method = this.GetType().GetMethod(command);
if (method != null)
{
method.Invoke(this, new object[] { context });
}
}
}
public void setsession(HttpContext context)
{
context.Response.Write(context.Request["session"]);
}
问题就是 在ie下 执行js后 获得的data为空 但是在火狐下都能得到data是“floor”
求大神帮忙 展开
$.get("handler/Handler.ashx", { command: "setsession", session: "floor", value: "2" }, function (data) {
alert(data);
});
handler.ashx代码:
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
if (context.Request["command"] != null)
{
string command = context.Request["command"].ToString();
System.Reflection.MethodInfo method = this.GetType().GetMethod(command);
if (method != null)
{
method.Invoke(this, new object[] { context });
}
}
}
public void setsession(HttpContext context)
{
context.Response.Write(context.Request["session"]);
}
问题就是 在ie下 执行js后 获得的data为空 但是在火狐下都能得到data是“floor”
求大神帮忙 展开
1个回答
展开全部
您好!很高兴为您答疑。
从您的代码上来看,不存在什么问题,可能是您的实际字符输出时,存在特殊符号,导致输出内容无法识别,建议您在回调中指定输出字符的类型为text后再行尝试。
如果对我们的回答存在任何疑问,欢迎继续问询。
从您的代码上来看,不存在什么问题,可能是您的实际字符输出时,存在特殊符号,导致输出内容无法识别,建议您在回调中指定输出字符的类型为text后再行尝试。
如果对我们的回答存在任何疑问,欢迎继续问询。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询