0.5.7 • Published 10 years ago
backbone-db v0.5.7
Backbone DB
Backbone database interface
api
/** the interface of the backbone-db exported module.
* It invokes the correct DB interface methods on this or this.db
* backbone-db .sync delegates CREATE, READ, UPDATE and DELETE to this interface
_.extend(DB.prototype, Backbone.Events, {
find: function(model, options, cb) {},
findAll: function(model, options, cb) {},
read: function(model, options, cb) {},
update: function(model, options, cb) {},
destroy: function(model, options, cb) {},
sync: function(method, model ,options) {} // sync delegates ti the methods above, should not be extended.
});
**/
var store = new DB('mymodels');
var MyModel = Backbone.Model.extend({
url: function() {
if(this.isNew()) {
return '/mymodels';
}
return '/mymodels/' + this.get(this.idAttribute);
},
db: store,
sync: store.sync
});
var me = new MyModel({username:"Nomon"});
me.save(null, {success: function() {
var me2 = new MyModel({id:me.get(me.idAttribute)});
me2.fetch({success: function(model) {
console.log("My username:",model.get('username'));
}});
}, error: function(err) {
console.error(err);
}});
// Output: My username: Nomon
0.5.7
10 years ago
0.5.6
10 years ago
0.5.5
10 years ago
0.5.4
10 years ago
0.5.3
11 years ago
0.5.2
11 years ago
0.5.1
11 years ago
0.5.0
11 years ago
0.4.25
11 years ago
0.4.24
11 years ago
0.4.23
11 years ago
0.4.22
11 years ago
0.4.21
11 years ago
0.4.20
11 years ago
0.4.19
11 years ago
0.4.18
11 years ago
0.4.17
11 years ago
0.4.16
11 years ago
0.4.15
11 years ago
0.4.13
11 years ago
0.4.12
11 years ago
0.4.11
11 years ago
0.4.9
11 years ago
0.4.8
11 years ago
0.4.7
11 years ago
0.4.6
11 years ago
0.4.5
11 years ago
0.4.4
11 years ago
0.4.3
11 years ago
0.4.2
11 years ago
0.4.1
11 years ago
0.4.0
11 years ago
0.3.4
11 years ago
0.3.3
11 years ago
0.3.2
11 years ago
0.3.1
11 years ago
0.3.0
11 years ago
0.2.1
11 years ago
0.2.0
11 years ago
0.1.4
11 years ago
0.1.3
12 years ago
0.1.2
12 years ago
0.1.1
12 years ago
0.1.0
12 years ago
0.0.6
12 years ago
0.0.5
12 years ago
0.0.4
12 years ago
0.0.3
12 years ago
0.0.2
12 years ago
0.0.1
12 years ago