Skip to content
Advertisement

How can I store/setStates of several inputs from a mapped array

So I am working on a project, where a user would provide questions and at the time of applying, the applicant would provide responses to these questions.

Here is my array of the user’s questions

JavaScript

from this array, I’ve mapped each of them

JavaScript

The answer of the first one overrides the answer of the second one. How do i fix this?? SO i can persist all the answers.

Advertisement

Answer

You could for example use a Map which maps question IDs to answers to keep track of questions and the associated answers.

JavaScript

Then have a function which updates the Map whenever a question is answered. This function takes the question ID and the value. It also has to create a new Map every time as React only does a shallow comparison and state should be treated as immutable.

JavaScript

Then last but not least you need to call your update function.

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