I want to download the entire contents of a JSON file when launching an ionic application to navigate in all contents remaining locally without remote call
You can use
$http.get(‘foo.bar’)
where ‘foo.bar’ is your local file.
Take a look at this article here
Thank you very well , it suits me (y)