I have a response like this:
I want to display the name of each object inside this HTML:
{subjects.map((item, i) => (
<li className="travelcompany-input" key={i}>
<span className="input-label">{ item.name }</span>
</li>
))}
But it throws an error of subjects.map is not a function
.
First, I have to define the keys of the objects where it creates an array of keys, where I want to loop through and show the subject.names
.
What I also tried is this:
{Object.keys(subjects).map((item, i) => (
<li className="travelcompany-input" key={i}>
<span className="input-label">key: {i} Name: {subjects[i]}</span>
</li>
))}
Do you get an error when you try to map through the object keys, or does it throw something else.
Also note when you want to map through the keys you make sure to refer to the object keys correctly. Just like this:
You need to use
{subjects[item]}
instead of{subjects[i]}
because it refers to the keys of the object. If you look for subjects[i] you will get undefined.You get this error because your variable
subjects
is anObject
notArray
, you can usemap()
only for Array.In case of mapping object you can do this:
Map over the keys of the object using Object.keys():
{Object.keys(yourObject).map(function(key) { return <div>Key: {key}, Value: {yourObject[key]}</div>; })}
When calling
Object.keys
it returns a array of the object's keys.Object.keys({ test: '', test2: ''}) // ['test', 'test2']
When you call
Array.map
the function takes in 2 arguments; 1. the item, 2. the index.When you want to get the data, you need to use
item
instead ofi