Skip to content

Dexie.on.error

David Fahlander edited this page Mar 27, 2014 · 16 revisions

Syntax

db.on("error", function (error) {});

Parameters

error: any Any uncatched error from a request or transaction will bubble up to the subscriber.

Sample

db.on("error", function(e) { console.error (e.stack || e); });
Clone this wiki locally