javascript Programming Glossary: bookmodel
Understand Backbone.js REST calls http://stackoverflow.com/questions/18504235/understand-backbone-js-rest-calls of code you might find in a Backbone application. var BookModel Backbone.Model.extend urlRoot ' books' var BookCollection Backbone.Collection.extend.. books' var BookCollection Backbone.Collection.extend model BookModel url ' books' Create POST Since we're using a RESTful API that's.. The following code should suffice var brandNewBook new BookModel title '1984' author 'George Orwel' brandNewBook.save Backbone..
|