-
-
Notifications
You must be signed in to change notification settings - Fork 641
Table.defineClass()
David Fahlander edited this page Mar 28, 2014
·
5 revisions
Define a javascript constructor that will be mapped to this object store.
table.defineClass(structure)
structure: Object | Definition of the properties available on instances of the class and their types. |
Constructor function for the defined class.
Makes any object extracted from this table be instanceof a class with given structure. You could extend the prototype of the returned constructor function with methods that will be available on all objects returned by the database.
If calling this method before db.open() call, intelligent javascript editors like Visual Studio 2012+ and IntelliJ will be able to do autocomplete for all objects returned by the database, based on the prototype of the constructor and on given structure.
function Car() {
// Just an example class that will be used in an array-property of the Friend class.
}
var db = new Dexie("FriendsDB");
// The stores() method just specify primary key and indexes
db.version(1).stores({
friends: "++id,name,shoeSize"
});
// When using defineClass(), you may specify non-indexed properties as well and their types
var Friend = db.friends.defineClass ({
name: String,
shoeSize: Number,
cars: [Car],
address: {
street: String,
city: String,
country: String
}
});
Friend.prototype.log = function () {
console.log(JSON.stringify(this));
}
db.open();
db.friends.where("name").startsWithIgnoreCase("d").each(function(friend) {
friend.log();
}).catch(function (e) {
console.error(e);
});
Dexie.js - minimalistic and bullet proof indexedDB library