0
Ich möchte getJSON mit einem Apk builded mit Phonegap machen. Meine Funktion funktioniert auf dem Desktop, aber wenn ich es aus der apk ausführen, wird die Funktion nicht ausgeführt.getJSON funktioniert nicht auf Phonegap Build
Meine jQuery-Funktion:
$.getJSON(url, function(data) {
var items = [];
if (data.state == 'ok'){
$('#succes').html("Votre compte a été créé");
}
else {
$('#succes').hide();
$('#erreur').html("Une erreur est survenue !");
$('#erreur').fadeIn();
}
});
Ich habe bereits diese
auf meinem config.xml hinzufügen<allow-navigation href="http://*/*" />
<allow-navigation href="https://*/*" />
<allow-navigation href="data:*" />
<allow-navigation href="*" />
<access origin="*" />
<allow-intent href="*" />
Vielen Dank für Ihre Hilfe,)
(und sorry für mein Englisch Niveau)