0

I am trying to use Ionic2 Storage , which use Indexed DB on browser. How can I get total number of keys in storedin DB.

this._storage.length() gives me t {__zone_symbol__state: null, __zone_symbol__value: Array[0]}

raju
  • 6,448
  • 24
  • 80
  • 163

1 Answers1

0

I got the answer, this._storage.length() returns promise

  this._storage.length().then((data) => {
    console.log(data);
  })
raju
  • 6,448
  • 24
  • 80
  • 163