What is BackboneJS? by Eduonix Learning Solutions

About the Lecture

The lecture What is BackboneJS? by Eduonix Learning Solutions is from the course BackboneJS. It contains the following chapters:

  • What is REST
  • Add Structure To Your Data
  • Models / Collections
  • Events / Views
  • Templates with Underscore.js

Author of lecture What is BackboneJS?

 Eduonix Learning Solutions

Eduonix Learning Solutions


Customer reviews

(1)
5,0 of 5 stars
5 Stars
5
4 Stars
0
3 Stars
0
2 Stars
0
1  Star
0


Excerpts from the accompanying material

... which uses a RESTful JSON interface. Backbone ...

... and not a standard, there are no set rules for how a client and service should use ...

... “Models” with key-value binding. Models can be created, updated, validated and destroyed. Elements in ...

... functionality for managing changes in data. They provide accessor and mutator access ...

... Created"); }, login: function(){ //Login code } }); //Instantiate ...

... collection var models = [ ] for (var i=0; i < 5; i++) { models.push(new Backbone.Model({ num: i ...

... virtually any object. This allows the object to ...

... event"); //Can use namespaced if there are a large ...

... be displayed to the user. In Backbone, views act like controllers as well, ...

... user view"); } }); var user_view = ...

... <%= user.get('email') %> render: function(){ // Compile the template using ...

Chapters of this lecture