|
下面是我的代码
$.ajax({
async : false,
type : "post",
contentType: "application/x-www-form-urlencoded; charset=utf-8",
url : "http://rhtsoft-dfb.vicp.cc:8089/aloa/oa/mobile/msgMobile/receiveMsgList.ht",
data :JSON.stringify({"told":"10000000620040","page":"0","pagesize":"2","ifRead":"1"}),
timeout: 60000,
error : function(error, status, text) {
alert("加载失败");
},
success : function(data) {
var result = JSON.stringify(data);
alert(result);
}
});
但返回的是"\r\n[]",没有获取到数据 |
|