When I use the ‘GET’ method during an API call, and get my json back (during the .then(function(json) { … });
How do I then save the json file locally? I know that Storage.write(jsonfilename, json);
Do I do a JSON.stringify(json). and save that in the above storage.write? Or does it need to be JSON.parse(json) and save it in that spot?
Does my question make sense? Thanks in advance!