Skip to content
Advertisement

ReactJS “Unhandled Rejection (TypeError): this.state.features.map is not a function”

I’m learning React and now I’m trying to do a get request and list with map but when I run this code they come up with this error “Unhandled Rejection (TypeError): this.state.features.map is not a function”. I have already searched this but I do not understand what is going on.

JavaScript

Advertisement

Answer

In your componentWillMount, just do this:

JavaScript

The response you get from the API is an object which has a key of features which is an array of objects of the data you want.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement