GET
:$.get(..)
POST
:$.post()..
Che dire PUT/DELETE
?
GET
:$.get(..)
POST
:$.post()..
Che dire PUT/DELETE
?
Risposte:
È possibile utilizzare il metodo ajax :
$.ajax({
url: '/script.cgi',
type: 'DELETE',
success: function(result) {
// Do something with the result
}
});
PUT
o le DELETE
richieste restituiscono errori 404, sarà necessario abilitare questi verbi in IIS. Ho trovato che questa è una buona risorsa: geekswithblogs.net/michelotti/archive/2011/05/28/…
"The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers."
da: api.jquery.com/jQuery.ajax/#options
method
otype
$.ajax
funzionerà.
$.ajax({
url: 'script.php',
type: 'PUT',
success: function(response) {
//...
}
});
contentType: "application/json"
Possiamo estendere jQuery per creare scorciatoie per PUT e DELETE:
jQuery.each( [ "put", "delete" ], function( i, method ) {
jQuery[ method ] = function( url, data, callback, type ) {
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = undefined;
}
return jQuery.ajax({
url: url,
type: method,
dataType: type,
data: data,
success: callback
});
};
});
e ora puoi usare:
$.put('http://stackoverflow.com/posts/22786755/edit', {text:'new text'}, function(result){
console.log(result);
})
copia da qui
Sembra essere possibile con la funzione ajax di JQuery specificando
type: "put"
o
type: "delete"
e non è supportato da tutti i browser, ma dalla maggior parte di essi.
Dai un'occhiata a questa domanda per maggiori informazioni sulla compatibilità:
I metodi PUT, DELETE, HEAD, ecc. Sono disponibili nella maggior parte dei browser Web?
Da qui , puoi farlo:
/* Extend jQuery with functions for PUT and DELETE requests. */
function _ajax_request(url, data, callback, type, method) {
if (jQuery.isFunction(data)) {
callback = data;
data = {};
}
return jQuery.ajax({
type: method,
url: url,
data: data,
success: callback,
dataType: type
});
}
jQuery.extend({
put: function(url, data, callback, type) {
return _ajax_request(url, data, callback, type, 'PUT');
},
delete_: function(url, data, callback, type) {
return _ajax_request(url, data, callback, type, 'DELETE');
}
});
Fondamentalmente è solo una copia di $.post()
con il parametro del metodo adattato.
Dovresti essere in grado di usare jQuery.ajax
:
Carica una pagina remota usando una richiesta HTTP.
E puoi specificare quale metodo utilizzare, con l' type
opzione :
Il tipo di richiesta da effettuare ("
POST
" o "GET
"), il valore predefinito è "GET
".
Nota: qui è possibile utilizzare anche altri metodi di richiesta HTTP, comePUT
eDELETE
, ma non sono supportati da tutti i browser.
PUT
o DELETE
?
Per brevità:
$.delete = function(url, data, callback, type){
if ( $.isFunction(data) ){
type = type || callback,
callback = data,
data = {}
}
return $.ajax({
url: url,
type: 'DELETE',
success: callback,
data: data,
contentType: type
});
}
Puoi farlo con AJAX!
Per PUT
metodo:
$.ajax({
url: 'path.php',
type: 'PUT',
success: function(data) {
//play with data
}
});
Per DELETE
metodo:
$.ajax({
url: 'path.php',
type: 'DELETE',
success: function(data) {
//play with data
}
});
Ho scritto un plugin jQuery che incorpora le soluzioni discusse qui con il supporto cross-browser:
https://github.com/adjohnson916/jquery-methodOverride
Controlla!
Se hai bisogno di fare un $.post
lavoro su un Laravel Route::delete
o Route::put
semplicemente aggiungere un argomento "_method"="delete"
o "_method"="put"
.
$.post("your/uri/here", {"arg1":"value1",...,"_method":"delete"}, function(data){}); ...
Deve funzionare per altri framework
Nota: testato con Laravel 5.6 e jQuery 3
È possibile includere nell'hash dei dati una chiave denominata: _method con valore 'delete'.
Per esempio:
data = { id: 1, _method: 'delete' };
url = '/products'
request = $.post(url, data);
request.done(function(res){
alert('Yupi Yei. Your product has been deleted')
});
Questo vale anche per
Ecco un semplice one-liner che uso per inserire più di una variabile:
$.put("https://your-url.com",{item1:'new item1',item2:'new items2'});