Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

352
Vistas
onChange event inside loop is only passing 0th index

The following code is a input component which uploads an image and I am using a function "handleImageChange" to trigger onChange event. it is inside a loop

{images.map((x,i) => (
    <Grid item>
           <Input
              accept="image/*"
              id="change-image-file"
              required
              type="file"
              onChange={(e) => handleImageChange(e, i)}
           />
    </Grid>
)}

 const handleImageChange = (e, index) =>{
       conole.log(index)   // whichever index I click it always returns 0
       conole.log(e.target.files[0])  // however e.target.value works alright
 }

this is the image in correspondence with the code where I am clicking the 2nd image button but still getting the index 0

I am using React 18, Material UI 5, and the "Input" & "Grid" is from material UI which resembles HTML "input" & "div" respectively.

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

move your <Grid> outside map and than try


<Grid item>
     {images.map((x,i) => (

           <Input
              accept="image/*"
              id="change-image-file"
              required
              type="file"
              onChange={(e) => handleImageChange(e, i)}
           />
     )}
</Grid>
about 4 years ago · Juan Pablo Isaza Denunciar

0

As Aman suggests, first move your Grid outside loop. Second thing you should change is that you need to provide dynamic key and id to each element, like this you declare same id to each element and no key at all - React core principle relays on keys when working with loop that outputs component instances.

You should try something like this:

<Grid item>
 {images.map((x,i) => (

       <Input
          key={`k-${i}`}
          id={`i-${i}`}
          accept="image/*"
          required
          type="file"
          onChange={(e) => handleImageChange(e, i)}
       />
 )}
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda