PATCH request method in Backbone.js

backbone.js, http-patch

Solution

As of Backbone.js v0.9.9, you can simply pass `{ patch: true }` to `save()`.

Read more: http://backbonejs.org/#changelog

Problem

What is the right way to perform `PATCH` request while saving model's attributes in Backbone.js?

Original source