Hi all, How do I list out the key value pair from a json object. At the moment am just listing the object only and not the key. Is there a way to list key in one div/list and the object in another
Tom Ireland
4 months ago
Are you looking to retrieve a value from a specific key? If so, you can use Get and pass in the key as the path, which will return the value.
zefunha
4 months ago
Yeah so am looking for an easy way to match the key and value and display them on the div/list
zefunha
4 months ago
Pulling from a third party api
Lucas G
4 months ago
What do you mean by match the key and value
Are you just trying to repeat over the API data?
zefunha
4 months ago
Yeah repeat all the of the api results but at the minute am just repeating the value not the key
Tom Ireland
4 months ago
It sounds like you might need either From entries or Entries(canβt recall off the top of my head) if the data returned is not an array and is an object. That should then allow you to repeat of each key and then use the repeat itemβs values as output as well.
π1
zefunha
4 months ago
I'll try this later
π1
Tom Ireland
4 months ago
Let us know how you get on.
Lucas G
4 months ago
Can you show the repeat and what you are trying to accomplish
zefunha
4 months ago
So I have a third party api and I want to list the key and value in the div on the dashboard @Tom Ireland the entries didn't seem to work