Als «ajax» getaggte Fragen

86
JQuery Ajax sendet GET anstelle von POST

Der folgende Code löst ein GET anstelle einer POST-HTTP-Anforderung aus. function AddToDatabase() { this.url = './api/add'; } AddToDatabase.prototype.postData = function(dataToPost) { $.ajax({ type: "POST", url: this.url, data: dataToPost, context: this, success: this.onSuccess...

86
CORS-Fehler auf derselben Domain?

Ich stoße gerade auf ein seltsames CORS-Problem. Hier ist die Fehlermeldung: XMLHttpRequest cannot load http://localhost:8666/routeREST/select?q=[...] Origin http://localhost:8080 is not allowed by Access-Control-Allow-Origin Zwei Server: localhost: 8666 / routeREST /: Dies ist ein einfacher...

82
Globaler Ajax-Fehlerbehandler mit AngularJS

Als meine Website zu 100% aus jQuery bestand, habe ich Folgendes getan: $.ajaxSetup({ global: true, error: function(xhr, status, err) { if (xhr.status == 401) { window.location = "./index.html"; } } }); um einen globalen Handler für 401-Fehler festzulegen. Jetzt verwende ich anglejs mit...