我无法连接我的数据库,因为我的网址被拒绝了。我想访问的网址是:
我有一些具有相同结构的网址,我在我的config.xml文件中尝试了这个但是没有用。
<access origin="*" />
<access origin="http://192.168.0.16" subdomains="true" />
或
<access origin="http://192.168.0.16/*"/>
这是我创建路径并调用函数连接到我的数据库的完整代码:
function pullUser(userName,apodo,secondName,lastName,pass1,userMail){
var method='GET';
var url = appConstants.requestpullUserURL();
//alert('cogidaUrl: '+ url);
var path = url + "?nombre="+userName+"&apodo="+apodo+"&apellido1="+secondName+
"&apellido2="+lastName+"&email="+userMail+"&clave="+pass1;
console.log(path);
//alert('El path es: '+ path);
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function(){
//alert('onready. readyState:'+xhr.readyState+' status: '+xhr.status);
if(xhr.readyState == 4 && xhr.status == 200){
resp = xhr.responseText;
//alert('Registro completado');
transitionLog();
}else{
//alert('devuelve false');
return false;
}
}
xhr.open(method, path, true); //Creamos la peticion
resp = xhr.send(); // FALLA AQUI SIN SERVER
alert('despues del send');
}
感谢。
答案 0 :(得分:0)
我解决了它,添加了白名单插件。我不知道为什么当我创建项目时没有添加自己。我的app目录上的这个bash代码解决了它:cordova插件添加https://github.com/apache/cordova-plugin-whitelist.git