I have something like the following:
Storage.remove({key: 'somedata'}).then(r => {
Storage.set({key: 'somedata', value: data}).then(g => {
Storage.get({key : 'somedata'}).then((val) => {
console.log('Your json is', val);
});
});
});
I get data from my API in JSON from and try to store it.
When I then try to output the stored data in the console I get the following
I am wondering how I can get the acctual data instead of it being object object
Thanks
Update - Picture of error with potential solution
CodePudding user response:
In my opinion, I think you can try this
Storage.remove(key).then(r => {
Storage.set(key, data).then(g => {
Storage.get(key).then((val) => {
console.log('Your json is', val);
});
});
});