For further actions, you may consider blocking this person and/or reporting abuse
Read next
Opinionated vs. Non-Opinionated Frameworks: Understanding the Difference
Muhammad Medhat -
How to Switch Your Rails Application Database from PostgreSQL to SQLite
Alexandre Calaça -
How to visualize bar chart with react-chart-2, showing label on the bar
Viktor Le -
Black Friday Sale: Angular Material Dev
Dharmen Shah -
Top comments (3)
Hey Deni, I think I understand your question but not entirely sure. Adding some code snippets or examples to your post would help us help you.
I'm guessing you don't need to loop through the endpoint itself and need to loop through the data it returns? If so, you'll have to see what the structure of the data returned. It's most likely an array, but it's hard to say without knowing the endpoint or what you're doing.
Generally though, the data comes back as JSON, either already as an array or an object of objects. The first step (usually) is to figure out what sort of data you're getting and go from there.
Hi Andy, yes the data comes back as JSON and it's an object of objects from which I need just a part of it not all the data.
You should be able to access that data and set it as a variable then. Here is an example:
It's up to you whether or not you want to store the entire data returned, which might make it easier for you in the long run: