Установил плагин cordova-plugin-nativestorage, в app.module.ts
import { NativeStorage } from '@ionic-native/native-storage/ngx';
@NgModule({
providers: [
NativeStorage
]
})
в ts файле страницы
constructor(private nativeStorage: NativeStorage){
this.nativeStorage.setItem('myitem', 123)
.then(
() => console.log('Stored item!'),
error => console.error('Error storing item', error)
);
this.nativeStorage.getItem('myitem')
.then(
data => console.log(data),
error => console.error(error)
);
}
При запуске ошибка TypeError: Object(...) is not a function на строке с this.nativeStorage.setItem, хотя typeof this.nativeStorage.setItem возвращает function