I tried to read the https://github.com/Nodonisko/ionic-cache readme, but I cant understand how to store value on it.
I tried to put this.cache.getOrSetItem('key', 'value')
, but I am just getting this error Argument of type '"value"' is not assignable to parameter of type 'CacheValueFactory<{}>'. (typescript-tide)
and got no idea what is CacheValueFactory
.
Somebody can point please, for best documentation about this if there is any.
Thanks.
P.S. Just trying to learn Ionic framework.
According to your example, I think you are trying to get or set values and store in app memory. I suggest you could change your plugin to Ionic Native Storage. It is easy and simpler to user. The stored data will clear only if you clear data or cache on your mobile app settings or use
clear()
/remove()
methods in your code.