Home > Net >  Ionic Storage not outputing my stored JSON data correctly - Angular
Ionic Storage not outputing my stored JSON data correctly - Angular

Time:12-24

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

Picture example

I am wondering how I can get the acctual data instead of it being object object

Thanks

Update - Picture of error with potential solution enter image description here

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);
      });
   });
});
  • Related