I use a REST-service to read a JSON from an url.
The JSON contains a huge array containing 250 objects.
How can i get this whole array ?
In this data-mapping screen i can map the array to a local-storage variable or directy to a javascript.
The local-storage variable doesn ́t work because it can only store strings, is that correct ?
But when i map the array to a JavaScript my application crashes (the handy-screen turns black). Even if the javascript is doing nothing else than write the values to the console.
I realized that the javascript is called 250 times, one time for each element in the array, maybe there is a better way of reading this array ??
Thx a lot for help !