ajax function
Effettua una chiamata ajax
// API dBJsDavide Bausach / 22-05-2015
Argomenti:
- [string] method : POST | GET (Default POST)
- [string] url : url a cui inviare la richiesta
- [string] send : stinga in formato chiave valore
- [boolean] cache : true | false (Default true)
- [boolean] contentType : true | false (Default true)
- [string] response: risposta in formato Text | XML (Default Text)
- [string] method : POST | GET (Default POST)
- [string] url : url a cui inviare la richiesta
- [string] send : stinga in formato chiave valore
- [boolean] cache : true | false (Default true)
- [boolean] contentType : true | false (Default true)
- [string] response: risposta in formato Text | XML (Default Text)
Standard sintax
function myFuction(){ $D.ajax({ method: 'POST', url: 'myServerFile.php', send: 'val1=1&val2=2...', cache: false, contentType: false, response: 'Text or XML', before: function(){ //my function code }, s404: function(){ //my function code }, res: function(response){ //my function code } }); }
Effettua una chiamata ajax impostando i parametri sopraindicati dando la possibilità di gestire la funzione before, per eseguire istruzioni prima dell'invio della richiesta asincrona, la funzione s404, in caso di risposta 404 dal server e la funzione res per gestire la risposta alla chiamata.