Hello,
in a project at our university I've written an interface for getting an JSON object. The data of the JSON object is converted in a list.
Now comes the tricky part (for me) - I've tried to create a page for more detailled information about every item (it's an interface for getting book data from our local library). The problem is, that I don''t know how much objects (results) are stored in the JSON object and I'm not able to load this information in a new (dynamical page) - maybe it's necessary to refresh the page.
What it should do:
1. get the JSON object (solved)
2. create a linked list out of the items from the JSON object (solved)
3. when clicking a link, a page appears with more detailled information (open)
Are there any ideas for this problem?
Thanks.