I’m new to backbone and trying to write an html5 front end for an existing (and pretty big) REST back end. I found that when saving a model, backbone by default sends the model encoded as JSON which my existing API doesn’t support.
Is it possible to send plain simple post request with variables using backbone?
I’m new to backbone and trying to write an html5 front end for an
Share
I think what you’re looking for is
Backbone.emulateJSON = truecopied from the official documentation: