Ionic Storage
Ionic Storage
Storage is an easy way to store key/value pairs and JSON objects. Storage uses a variety of storage engines
underneath, picking the best one available depending on the platform.When running in a native app context,
Storage will prioritize using SQLite, as it's one of the most stable and widely used file-based databases, and avoids
some of the pitfalls of things like localstorage and IndexedDB, such as the OS deciding to clear out such data in
low disk-space situations.When running in the web or as a Progressive Web App, Storage will attempt to use
IndexedDB, WebSQL, and localstorage, in that order.
Usage
Next, install the package (comes by default for Ionic apps > Ionic V1):
Next, add it to the imports list in your NgModule declaration (for example, in src/app/app.module.ts):
@NgModule({
declarations: [
// ...
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp),
IonicStorageModule.forRoot()
],
bootstrap: [IonicApp],
entryComponents: [
// ...
],
providers: [
// ...
]
})
export class AppModule {}
1
Finally, inject it into any of your components or pages:
...
// set a key/value
storage.set('name', 'Max');
Configuring Storage
The Storage engine can be configured both with specific storage engine priorities, or custom configuration options
to pass to localForage. See the localForage config docs for possible options:
https://github.com/localForage/localForage#configuration
Note: Any custom configurations will be merged with the default configuration
@NgModule({
declarations: [...],
imports: [
IonicStorageModule.forRoot({
name: '__mydb',
driverOrder: ['indexeddb', 'sqlite', 'websql']
})
],
bootstrap: [...],
entryComponents: [...],
providers: [...]
})
export class AppModule { }
2
Instance Members
driver
Get the name of the driver being used.
Returns: string|null
ready()
Reflect the readiness of the store.
Returns: Promise<LocalForage>
get(key)
Get the value associated with the given key.
key any
the key to identify this value
Returns: Promise
set(key, value)
Set the value for the given key.
key any
the key to identify this value
value any the value for this key
Returns: Promise
Returns a promise that resolves when the key and value are set
remove(key)
Remove any value associated with this key.
key any
the key to identify this value
Returns: Promise
clear()
Clear the entire key value store. WARNING: HOT!
3
Returns: Promise
length()
Returns: Promise
keys()
Returns: Promise
forEach(iteratorCallback)
Iterate through each key,value pair.
Returns: Promise
IZDVOJENI PRIMER
// set a key/value
storage.set('name', 'Max');
4
Using Storage in Ionic 2+
Ionic’s LocalStorage is now called simply Storage in Ionic 2+ and behind the scenes Storage decides the best
method to store the data. On mobile phones for example, SQLite is the preferred storage method. IndexedDB,
WebSQL or localstorage is used in browsers for Progressive Web Apps.
Storage is the easiest way to save key/value pairs of data or Json objects. Here’s how to use it in your Ionic 2+
apps:
Installation
First, install the SQLite Cordova plugin with this command:
Then install Storage. You can skip this step if you’re using a version or Ionic 2 greater than RC0, because Storage
is now included automatically:
Importing + Injecting
Import it in the appropriate module, the app root module for example:
Module: app.module.ts
...
import { IonicStorageModule } from '@ionic/storage';
@NgModule({
imports: [
IonicModule.forRoot(MyApp),
IonicStorageModule.forRoot(),
...
],
...
})
Component: team.ts
...
import { Storage } from '@ionic/storage';
// ...
}
5
Usage
Now you’re ready to start using Storage’s set, get and remove methods. Let’s use a simple example where we have
three methods, one that sets a team as a favorite, one that removes the team from the favorites and one that checks
if a team is a favorite:
Component: team.ts
fav() {
this.storage.set(`team ${ this.teamId }`, this.teamName);
this.favorite = true;
}
removeFav() {
this.storage.remove(`team ${ this.teamId }`);
this.favorite = false;
}
isFav() {
this.storage.get('team ' + this.teamId).then((value) => {
value ? this.favorite = true : this.favorite = false
}).catch(() => this.favorite = false);
}
In that example, the isFav method can be used in the ionViewWillEnter page lifecycle hook to determine if a team
is already a favorite.