我写了一个这样的函数
function send(url, data){
$.ajax({
url: url,
data: data,
cache: false,
success: function(msg){
alert('success :'+msg);
},
error: function(msg){
alert('error: '+msg);
},
complete: function(msg){
alert('complete: '+msg);
}
});
alert('sending to :'+url +' using: '+data);
}
使用模拟器时效果很好,服务器可以读取数据。
但是当我将它上传到云端并应用到 iphone / ipad 上时,服务器无法获取数据。
任何想法都值得赞赏
谢谢