I would like to verify my understanding on dealing with JSON
The current best practice is to fetch JSON from a remote server and use some plugin to save it into SQLITE.
A simpler way was to store in localstorage, but it sound less reliable, do i get it right?
Then, is it possilble to just pull the entire .JSON file and save as .JSON locally and then simply read the file as if it is locally packaged into the app:
this.http.get(‘localdatapath/data.json’).subscribe(res => {
this.data = res.json();
resolve(this.data);
console.log(this.data);
});
is it possible?