How can I render a nested map inside my jsx component?
I need to do the equivalent of a javascript for(key in groupItem){} See below.
class MyComponent extends React.Component {
render () {
var options = this.props.options;
return (
<div>
{options.map(function(groupItem, key){ return (
/*
Unexpected Token if using groupItem.map?
{groupItem.map(function(){return })}
*/
)})}
</div>
)
}
}
Dropdown.defaultProps = {
options:[{
'groupX':{
'apple':'lovely green apple',
'orange':'juicy orange',
'banana':'fat banana'
}
}]
}
JSON.stringify(groupItems) === {
'groupX':{
'apple':'lovely green apple',
'orange':'juicy orange',
'banana':'fat banana'
}
}
WHY DON'T THESE WORK?
groupItem.map - DOESN'T WORK
Object.keys(groupItem).forEach(function (key){ - DOESN'T WORK
You were almost right with your Object.keys implementation, (map is a property for arrays only), but the syntax error is coming from the wrapping
{}
. You don't need to escape, you're already insidejs
syntax.I've decided to create my own method, due to the clunkyness of this.
This is much easier to read.