IE6核心 + JQuery1.72使用以下代码往Server端发送消息
jQuery.support.cors = true;
$.ajax(query_URL,{
type: "POST",
timeout: 3000,
async: false,
cache: false,
contentType: "application/json;charset=utf-8",
data: datastr,
dataType: "json",
success: function (callback){ result = callback;},
error:function(err){alert("失败码:"+err.status+" ");}
});
Server端接收到的BodyType 为btBinary正确,但是Body RawBody都是nil
往java编写的Server端发送时接收正常
IE6核心 + JQuery1.72使用以下代码往Server端发送消息
jQuery.support.cors = true;
$.ajax(query_URL,{
type: "POST",
timeout: 3000,
async: false,
cache: false,
contentType: "application/json;charset=utf-8",
data: datastr,
dataType: "json",
success: function (callback){ result = callback;},
error:function(err){alert("失败码:"+err.status+" ");}
});
Server端接收到的BodyType 为btBinary正确,但是Body RawBody都是nil
往java编写的Server端发送时接收正常