Backbone.js is a Javascript framework known as MV* (Model, View and stuff). This framework has the Backbone.sync function to perform CRUD (Create, Read, Update, Delete) operations. In order for a model object to perform these operations, it should have a property named ‘url’. The ‘sync’ function receives 3 arguments: method, model and options. Model objects also have functions that call the ‘sync’ functions, these functions are: ‘fetch’, ‘save’ and ‘destroy’. The function Save does both Create and Update operation: If the property idAttribute is defined, and the idAttribute is set, ‘save’ sends an update request, otherwise it sends a ‘create’ request. The content type of the request is ”application/json”.
How Does The Server Know What Request Type It Receives?
The client-side developer specifies one ‘url’ only per model. The server-side program can determine the type by checking the value of $_SERVER['REQUEST_MOTHED']:
- ‘GET’ – a read (or fetch) request.
- ‘POST’ – a create(save a new model) request.
- ‘PUT’ – an update(save existing model’s detail) request.
- ‘DELETE’ – a delete(destroy) request.
What To Send and How To Read?
Backbone.sync uses AJAX to send requests to the server. What you have to pass is the method and model. You better not skip the 3rd arguments, options, which contains at least two member:
- ‘success’ – a function called when the server processes the request successfully.
- ‘error’ – a function called when the server fails to process the request.
For example:
Backbone.sync(‘GET’, myModel, {
success: function(resp){
// process the response
},
error: function(resp){
// Recover or print an error message.
}
});
If you call Backbone.sync from an object don’t use ‘this” inside the success and error function as a reference to your object.
For example, if you call ‘sync’ from a view, write ‘myView=this;’ before your call to the ‘sync’ function.
Read Requests
If you send a ‘fetch’ request, specify ‘data’ in the ‘options’ argument, for example:
myModel.fetch({
data: {‘attr1′:’value1′, ‘attr2′:’value2′, … , ‘attrN’:”valueN’},
success:
….
error:
…
});
In the Server Side
The request attributes are taken from $_GET or $_REQUEST, as usual.
Save Requests
Send the attributes and the options.
For example:
myModel.save(myModel.attributes, {
success:
…
error:
….
});
In The Server Side
The data should be read from the file “php://input”, a filename used for reading data from the request body. The content is a string, and should be parsed, but since the incoming request data is JSON encoded, you should use the PHP method “json_decode”.
For example:
$post_vars = json_decode(file_get_contents(‘php://input’), true);
Destroy Requests
This time, you should set the ‘data’ member of the options argument to a JSON string. For example:
Backbone.sync(‘delete’, myModel,{
data: JSON.stringify(myModel), // This time the developer encodes the data.
success: function(model, resp) {
…..
},
error: function(){
….
} );
In The Server Side
Read the data from ‘http://input’ and decode it using json_decode. For example:
$post_vars = json_decode(file_get_contents(‘php://input’), true);
Anyways …
You can make sure you read the data correctly by sending the contents of ‘$_SERVER’, $post_vars and ‘$_REQUEST’ to the error_log. To print an array use json_encode.
Sending a Response To the Client
The response is everything the server side application prints to the standard output. You should print your response data encoded into JSON, as follows:
echo json_encode(responsedata);
Reading a Response
The response returned from the server is the first argument passed to the ‘succss’ callback function. It is not a model object, and you should get values from there using the method ‘get(attr-name’ or the member ‘attributes’.
For example:
{success: function(msg){
switch (msg.get(‘status’)){ // Get the value of the attribute ‘status’ in the server’s response.
…
To debug your code, you can use ‘alert(JSON.stringify(msg));’.
