“Agregar objeto a la matriz setstate” Código de respuesta

Agregue la matriz de objeto al estado reaccionar

setTheArray(currentArray => [...currentArray, newElement])
Jeff Le

Agregar objeto en el estado de matriz React

const handleAdd = (todo) => {
  const newTodos = [...todos];
  newTodos.push(todo);
  setTodos(newTodos);
}
Grieving Gharial

Agregar objeto a la matriz setstate


 this.setState( prevState => ({
     userFavorites: [...prevState.userFavourites,  {id: 3, title: 'C'}]
 }));

Concerned Crane

Agregar objeto a la matriz setstate

To push to the beginning of the array do it this way

   this.setState( prevState => ({
     userFavorites: [{id: 3, title: 'C'}, ...prevState.userFavourites]
  }));
Ashamed Anteater

Respuestas similares a “Agregar objeto a la matriz setstate”

Preguntas similares a “Agregar objeto a la matriz setstate”

Más respuestas relacionadas con “Agregar objeto a la matriz setstate” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código