Skip to content

Instantly share code, notes, and snippets.

@lexer
Created May 26, 2011 12:53
Show Gist options
  • Save lexer/993074 to your computer and use it in GitHub Desktop.
Save lexer/993074 to your computer and use it in GitHub Desktop.
Backbone Mongo Model
var MongoModel = Backbone.Model.extend({
idAttribute: "_id"
});
Backbone.Model.prototype.idAttribute = "_id";
@andrewseddon
Copy link

Hey did you manage to persist a Backbone model to mongo? I'm trying to do it now..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment