Preguntas etiquetadas con ajax

87
JQuery Ajax envía GET en lugar de POST

El siguiente código desencadena una solicitud GET en lugar de una POST HTTP. 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
¿Error de CORS en el mismo dominio?

Me estoy encontrando con un extraño problema de CORS en este momento. Aquí está el mensaje de error: XMLHttpRequest cannot load http://localhost:8666/routeREST/select?q=[...] Origin http://localhost:8080 is not allowed by Access-Control-Allow-Origin Dos servidores: localhost: 8666 /...

83
AJAX: ¿Compruebe si una cadena es JSON?

Mi JavaScript a veces falla en esta línea: var json = eval('(' + this.responseText + ')'); Los bloqueos se producen cuando el argumento de eval()no es JSON. ¿Hay alguna forma de verificar si la cadena es JSON antes de realizar esta llamada? No quiero usar un marco, ¿hay alguna forma de hacer...

82
Controlador de errores global Ajax con AngularJS

Cuando mi sitio web era 100% jQuery, solía hacer esto: $.ajaxSetup({ global: true, error: function(xhr, status, err) { if (xhr.status == 401) { window.location = "./index.html"; } } }); para configurar un controlador global para errores 401. Ahora, uso angularjs con $resourcey $httppara...