Home » Backbone.js model.sync()

Backbone.js model.sync()

by Online Tutorials Library

Backbone.js model.sync()

The Backbone.js Sync Model is used to communicate with the server and represent the state of a model.

Syntax:

Parameter explanation:

method: It represents the CRUD operations i.e. create, read, update and delete.

model: It is used to save the data on the model.

options: It fires success or error message depending on the method succeeded.

Let’s take an example.

See this example:

You may also like