Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Created June 24, 2015 02:44
Show Gist options
  • Save pumpkincouture/fffec4744b1daa3ebbb6 to your computer and use it in GitHub Desktop.
Save pumpkincouture/fffec4744b1daa3ebbb6 to your computer and use it in GitHub Desktop.
var Books = Backbone.Collection.extend({
url: '/books'
});
GET /books/ .... collection.fetch();
POST /books/ .... collection.create();
GET /books/1 ... model.fetch();
PUT /books/1 ... model.save();
DEL /books/1 ... model.destroy();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment