emulateHTTPBackbone.emulateHTTP = true
If you want to work with a legacy web server that doesn't support Backbone's default REST/HTTP approach, you may choose to turn on Backbone.emulateHTTP
. Setting this option will fake PUT
, PATCH
and DELETE
requests with a HTTP POST
, setting the X-HTTP-Method-Override
header with the true method. If emulateJSON
is also on, the true method will be passed as an additional _method
parameter.
Backbone.emulateHTTP = true; model.save(); // POST to "/collection/id", with "_method=PUT" + header.
Please login to continue.