@半个朋友 你好,想跟你请教个问题:
看到你之前遇到过用phonegap向服务端发ajax请求,总是走error是怎么解决的?
跨域问题??跨域的话服务端那边响应http要加response.setHeader("Access-Control-Allow-Origin", "*")
这代码没问题吗?
$.ajax({ url : http://192.168.1.156:8080/test/app/index, type : 'post', data : { "name" : "wang" },
dataType : "json", success : function(response){ alert(response.user.name); error : function(){ alert("请查看网络连接或联系系统管理员!"); } });
下面代码
好像是改了一下数据类型,实现跨域,你把代码贴上来看看!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(5)
跨域问题??跨域的话服务端那边响应http要加response.setHeader("Access-Control-Allow-Origin", "*")
这代码没问题吗?
$.ajax({
url : http://192.168.1.156:8080/test/app/index,
type : 'post',
data : {
"name" : "wang"
},
dataType : "json",
success : function(response){
alert(response.user.name);
error : function(){
alert("请查看网络连接或联系系统管理员!");
}
});
下面代码
好像是改了一下数据类型,实现跨域,你把代码贴上来看看!